mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] Исправлен StdProtectHandler
This commit is contained in:
parent
53fe4a12f1
commit
d69ab3c28c
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ public boolean verifyClientSecureToken(String token, String secureKey) {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean allowGetAccessToken(AuthResponse.AuthContext context) {
|
public boolean allowGetAccessToken(AuthResponse.AuthContext context) {
|
||||||
return !(context.authType == AuthResponse.ConnectTypes.CLIENT);
|
return (context.authType == AuthResponse.ConnectTypes.CLIENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue