Skip to content

Commit 1163bcb

Browse files
committed
When updating a 3rd-party disclosure, the updater is the ietf participant,
otherwise the updater is the submitter. - Legacy-Id: 708
1 parent fe3e063 commit 1163bcb

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ietf/ipr/new.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,10 @@ def __init__(self, *args, **kw):
111111
for contact in update.contact.all():
112112
contact_initial[contact_type[contact.contact_type]] = contact.__dict__
113113
if submitter:
114-
contact_initial["submitter"] = submitter
114+
if type == "third-party":
115+
contact_initial["ietf_contact"] = submitter
116+
else:
117+
contact_initial["submitter"] = submitter
115118
kwnoinit = kw.copy()
116119
kwnoinit.pop('initial', None)
117120
for contact in ["holder_contact", "ietf_contact", "submitter"]:

0 commit comments

Comments
 (0)