API Hot Fix - #Error On login without email
This commit is contained in:
parent
ea1a6a4649
commit
85c8af1f74
1 changed files with 5 additions and 4 deletions
|
@ -185,10 +185,11 @@ def oauth(oauth_token):
|
|||
|
||||
tempName = ";"
|
||||
|
||||
if user_data["email"] == "":
|
||||
for email in userEmails:
|
||||
if email["primary"] and email["verified"]:
|
||||
tempEmail = email["email"]
|
||||
if 'email' in user_data:
|
||||
if user_data["email"] == "":
|
||||
for email in userEmails:
|
||||
if email["primary"] and email["verified"]:
|
||||
tempEmail = email["email"]
|
||||
else:
|
||||
tempEmail = user_data["email"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue