Skip to content

Commit

Permalink
fix uninitialized var
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert committed Oct 26, 2023
1 parent 6c38d1a commit b52e0dc
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 b52e0dc

Please sign in to comment.