Merge branch 'release/5.0.4'

This commit is contained in:
Gravit 2019-06-11 10:29:11 +07:00
commit 8f487cad40
No known key found for this signature in database
GPG key ID: 061981E1E85D3216
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -22,8 +22,8 @@ public final class Version {
public final Type release; public final Type release;
public static final int MAJOR = 5; public static final int MAJOR = 5;
public static final int MINOR = 0; public static final int MINOR = 0;
public static final int PATCH = 3; public static final int PATCH = 4;
public static final int BUILD = 3; public static final int BUILD = 1;
public static final Version.Type RELEASE = Version.Type.STABLE; public static final Version.Type RELEASE = Version.Type.STABLE;
@LauncherAPI @LauncherAPI