Skip to content

Commit

Permalink
Merge pull request #1858 from cewert/fix-loginflow-crash
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert authored Jul 24, 2024
2 parents b8382f6 + cc31b08 commit 8a15bf8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/ShowScenes.bs
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ function LoginFlow()
SendPerformanceBeacon("AppDialogInitiate") ' Roku Performance monitoring - Dialog Starting

publicUsers = GetPublicUsers()
savedUsers = getSavedUsers()
numPubUsers = 0
if isValid(publicUsers) then numPubUsers = publicUsers.count()

numPubUsers = publicUsers.count()
savedUsers = getSavedUsers()
numSavedUsers = savedUsers.count()

if numPubUsers > 0 or numSavedUsers > 0
Expand Down

0 comments on commit 8a15bf8

Please sign in to comment.