Skip to content

Commit

Permalink
Simplify first launch authentication decision (#1685)
Browse files Browse the repository at this point in the history
We can stop the decision logic even from this place, as we omit the authentication when secrets are not set yet.
  • Loading branch information
HonzaR authored Nov 15, 2024
1 parent 311a1a5 commit 95285c5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,8 @@ object StandardPreferenceKeys {
null
)
val LATEST_APP_BACKGROUND_TIME_MILLIS =
LongPreferenceDefault(PreferenceKey("LATEST_APP_BACKGROUND_TIME_MILLIS"), 0)
LongPreferenceDefault(
PreferenceKey("LATEST_APP_BACKGROUND_TIME_MILLIS"),
Long.MAX_VALUE
)
}

0 comments on commit 95285c5

Please sign in to comment.