mirror of
https://github.com/YTVanced/VancedMicroG
synced 2025-01-03 14:11:00 +00:00
Fix auth token store policy
This commit is contained in:
parent
60e657d343
commit
17bf9f136e
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ public class AuthManager {
|
|||
setAuthToken("LSID", response.LSid);
|
||||
if (response.expiry > 0)
|
||||
setExpiry(response.expiry);
|
||||
if (response.auth != null && response.expiry != 0 && response.storeConsentRemotely)
|
||||
if (response.auth != null && (response.expiry != 0 || response.storeConsentRemotely))
|
||||
setAuthToken(response.auth);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue