We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d415d86 commit e36cad6Copy full SHA for e36cad6
1 file changed
ietf/bin/generate-draft-aliases
@@ -54,7 +54,11 @@ def get_draft_ad_emails(draft):
54
# If working group document, return current WG ADs
55
wg = draft.group
56
if wg and wg.acronym != 'none' and wg.parent and wg.parent.acronym != 'none':
57
- return get_group_ad_emails(wg)
+ ad_emails = get_group_ad_emails(wg)
58
+ if draft.ad:
59
+ if draft.ad.email_address() not in ad_emails:
60
+ ad_emails.add(draft.ad.email_address())
61
+ return ad_emails
62
# If not, return explicit AD set (whether up to date or not)
63
ad = draft.ad
64
#return [ad and ad.user and ad.user.email]
0 commit comments