Skip to content

Commit b6ab193

Browse files
authored
Auth: Set droidguard results to "null" instead of null (#3257)
1 parent d00ce53 commit b6ab193

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

play-services-core/src/main/java/org/microg/gms/auth/login/LoginActivity.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ private void retrieveRtToken(String oAuthToken) {
353353
.token(oAuthToken).isAccessToken()
354354
.addAccount()
355355
.getAccountId()
356-
.droidguardResults(null /*TODO*/)
356+
.droidguardResults("null" /*TODO*/)
357357
.getResponseAsync(new HttpFormClient.Callback<AuthResponse>() {
358358
@Override
359359
public void onResponse(AuthResponse response) {
@@ -430,6 +430,7 @@ private void retrieveGmsToken(final Account account) {
430430
.hasPermission(true)
431431
.addAccount()
432432
.getAccountId()
433+
.droidguardResults("null")
433434
.getResponseAsync(new HttpFormClient.Callback<AuthResponse>() {
434435
@Override
435436
public void onResponse(AuthResponse response) {

0 commit comments

Comments
 (0)