mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
bugfix
This commit is contained in:
parent
dbdc1b4d6a
commit
58984f11a6
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ public AuthManager.AuthReport refreshAccessToken(String refreshToken, AuthRespon
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
return requester.send(requester.post(refreshTokenUrl, new RefreshTokenRequest(refreshToken, context),
|
return requester.send(requester.post(refreshTokenUrl, new RefreshTokenRequest(refreshToken, context),
|
||||||
null), AuthManager.AuthReport.class).getOrThrow();
|
null), HttpAuthReport.class).getOrThrow().toAuthReport();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
logger.error(e);
|
logger.error(e);
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue