From 4d795e4524148893e0fcd8567cde015b09f24d64 Mon Sep 17 00:00:00 2001 From: davinci9196 Date: Tue, 15 Oct 2024 13:58:14 +0800 Subject: [PATCH] Fixed the issue that Limbo game cannot be logged in --- .../main/kotlin/org/microg/gms/auth/signin/AuthSignInService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play-services-core/src/main/kotlin/org/microg/gms/auth/signin/AuthSignInService.kt b/play-services-core/src/main/kotlin/org/microg/gms/auth/signin/AuthSignInService.kt index dcab8f3c53..3ccaf758f9 100644 --- a/play-services-core/src/main/kotlin/org/microg/gms/auth/signin/AuthSignInService.kt +++ b/play-services-core/src/main/kotlin/org/microg/gms/auth/signin/AuthSignInService.kt @@ -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) {