Skip to content

Commit

Permalink
Bug - Resolved GitHub Login Lookup Issues (#3845)
Browse files Browse the repository at this point in the history
  • Loading branch information
dealako authored Mar 9, 2023
1 parent a9a6cdf commit 4608721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cla-backend/cla/models/github_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def handle_commit_from_user(project, user_commit_summary: UserCommitSummary, sig
cla.log.debug(f'{fn} - User commit summary: {user_commit_summary} '
f'lookup by github email not found in our database, '
'attempting to looking up user by github username...')
users = cla.utils.get_user_instance().get_user_by_github_username(user_commit_summary.author_username)
users = cla.utils.get_user_instance().get_user_by_github_username(user_commit_summary.author_login)

# Got one or more records by searching the email or username
if users is not None:
Expand Down

0 comments on commit 4608721

Please sign in to comment.