Skip to content

Commit

Permalink
Merge pull request #1436 from cewert/fix-login-bug
Browse files Browse the repository at this point in the history
Fix uninitialized var in login flow
  • Loading branch information
1hitsong authored Oct 27, 2023
2 parents 062ed6a + b52e0dc commit 7e470da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ShowScenes.brs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function LoginFlow()
print "Auth token is no longer valid"
'Try to login without password. If the token is valid, we're done
print "Attempting to login with no password"
userData = get_token(userSelected, "")
userData = get_token(myUsername, "")
if isValid(userData)
print "login success!"
session.user.Login(userData)
Expand Down

0 comments on commit 7e470da

Please sign in to comment.