aboutsummaryrefslogtreecommitdiffhomepage
path: root/sec_certs_page/common/tasks/notify.py
diff options
context:
space:
mode:
Diffstat (limited to 'sec_certs_page/common/tasks/notify.py')
-rw-r--r--sec_certs_page/common/tasks/notify.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sec_certs_page/common/tasks/notify.py b/sec_certs_page/common/tasks/notify.py
index 3bb5b697..5d26ad70 100644
--- a/sec_certs_page/common/tasks/notify.py
+++ b/sec_certs_page/common/tasks/notify.py
@@ -84,9 +84,9 @@ class Notifier(DiffRenderer):
def _collect_usernames(self, change_dgsts, new_dgsts):
change_sub_emails = mongo.db.subs.find(
- {"certificate.hashid": {"$in": change_dgsts}, "certificate.type": self.collection},
+ {"type": "changes", "certificate.hashid": {"$in": change_dgsts}, "certificate.type": self.collection},
)
- new_sub_emails = mongo.db.subs.find({"updates": "new", "which": self.collection})
+ new_sub_emails = mongo.db.subs.find({"type": "new", "which": self.collection})
return {sub["username"] for sub in change_sub_emails} | {sub["username"] for sub in new_sub_emails}
def _load_bootstrap_parsed(self):