adapt LoginActivity to changes

This commit is contained in:
ikarulus 2019-01-13 20:53:25 +01:00
parent 6ff1f0e0c4
commit 5f615d7445

View file

@ -117,7 +117,8 @@ public class LoginActivity extends AppCompatActivity implements AsyncTaskCallbac
// Show a progress spinner, and kick off a background task to
// perform the user login attempt.
showProgress(true);
mAuthTask = new RequestHandler(credentials, this);
mAuthTask = new RequestHandler(this, "POST",
"api/login.json", credentials);
mAuthTask.execute((Void) null);
}
}