We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0c503 commit 7e13f2dCopy full SHA for 7e13f2d
1 file changed
ietf/community/utils.py
@@ -169,7 +169,10 @@ def community_lists_tracking_doc(doc):
169
170
171
def notify_event_to_subscribers(event):
172
- significant = event.type == "changed_state" and event.state_id in [s.pk for s in states_of_significant_change()]
+ try:
173
+ significant = event.type == "changed_state" and event.state_id in [s.pk for s in states_of_significant_change()]
174
+ except AttributeError:
175
+ significant = False
176
177
subscriptions = EmailSubscription.objects.filter(community_list__in=community_lists_tracking_doc(event.doc)).distinct()
178
0 commit comments