This commit is contained in:
Clercq 2022-08-10 01:01:33 +03:00
parent dbdc1b4d6a
commit 58984f11a6

View file

@ -113,7 +113,7 @@ public AuthManager.AuthReport refreshAccessToken(String refreshToken, AuthRespon
}
try {
return requester.send(requester.post(refreshTokenUrl, new RefreshTokenRequest(refreshToken, context),
null), AuthManager.AuthReport.class).getOrThrow();
null), HttpAuthReport.class).getOrThrow().toAuthReport();
} catch (IOException e) {
logger.error(e);
return null;