Skip to content

Commit 8ee6fba

Browse files
committed
legacy fixes
1 parent 441cfe9 commit 8ee6fba

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/dashboard/helpers.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ def process_bounty_details(bountydetails, url, contract_address, network):
230230
bounty_owner_email=metadata.get('notificationEmail', None),
231231
bounty_owner_github_username=metadata.get('githubUsername', None),
232232
claimeee_address=bountydetails[3],
233-
claimee_email=claimee_metadata.get('notificationEmail', None),
234-
claimee_github_username=claimee_metadata.get('githubUsername', None),
233+
claimee_email=claimee_metadata.get('notificationEmail', ''),
234+
claimee_github_username=claimee_metadata.get('githubUsername', ''),
235235
is_open=bountydetails[4],
236236
expires_date=timezone.datetime.fromtimestamp(bountydetails[9]),
237237
raw_data=bountydetails,
@@ -241,6 +241,7 @@ def process_bounty_details(bountydetails, url, contract_address, network):
241241
contract_address=contract_address,
242242
network=network,
243243
issue_description='',
244+
244245
)
245246
new_bounty.fetch_issue_description()
246247
if not new_bounty.avatar_url:

0 commit comments

Comments
 (0)