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 d588c09 commit 024a802Copy full SHA for 024a802
server.py
@@ -333,7 +333,7 @@ def update_aog_kyc_comments(item_id, legal_identifier):
333
current_item = get_response.json()
334
335
# Update the KYC_Comments field while preserving other fields
336
- current_kyc = current_item['KYC_Comments']
+ current_kyc = current_item.get('KYC_Comments', '')
337
338
if current_kyc != "":
339
current_item['KYC_Comments'] = current_kyc + "\n" + legal_identifier
0 commit comments