mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[FIX] Испралвение авторизации с включенным ProGuard
This commit is contained in:
parent
5192641e0b
commit
2a56594534
1 changed files with 1 additions and 4 deletions
|
@ -14,8 +14,6 @@ public class AuthRequestEvent extends RequestEvent implements EventInterface {
|
|||
public AuthRequestEvent() {
|
||||
}
|
||||
|
||||
@LauncherNetworkAPI
|
||||
public String error;
|
||||
@LauncherNetworkAPI
|
||||
public ClientPermissions permissions;
|
||||
@LauncherNetworkAPI
|
||||
|
@ -40,8 +38,7 @@ public AuthRequestEvent(ClientPermissions permissions, PlayerProfile playerProfi
|
|||
this.protectToken = protectToken;
|
||||
}
|
||||
|
||||
public AuthRequestEvent(String error, ClientPermissions permissions, PlayerProfile playerProfile, String accessToken, String protectToken, long session) {
|
||||
this.error = error;
|
||||
public AuthRequestEvent(ClientPermissions permissions, PlayerProfile playerProfile, String accessToken, String protectToken, long session) {
|
||||
this.permissions = permissions;
|
||||
this.playerProfile = playerProfile;
|
||||
this.accessToken = accessToken;
|
||||
|
|
Loading…
Reference in a new issue