Skip to content

Commit

Permalink
Fixed the issue that Limbo game cannot be logged in
Browse files Browse the repository at this point in the history
  • Loading branch information
DaVinci9196 committed Oct 15, 2024
1 parent 511afe8 commit 4d795e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class AuthSignInServiceImpl(
lifecycleScope.launchWhenStarted {
try {
val account = account ?: options?.account ?: SignInConfigurationService.getDefaultAccount(context, packageName)
if (account != null && options?.isForceCodeForRefreshToken != true && options?.includeUnacceptableScope != true) {
if (account != null && options?.isForceCodeForRefreshToken != true) {
if (getOAuthManager(context, packageName, options, account).isPermitted || AuthPrefs.isTrustGooglePermitted(context)) {
val googleSignInAccount = performSignIn(context, packageName, options, account)
if (googleSignInAccount != null) {
Expand Down

0 comments on commit 4d795e4

Please sign in to comment.