From f0e3d27708f6e59113262caeba885c38531903b6 Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 27 Jan 2024 09:54:29 +0100 Subject: [PATCH] Revert "Refresh tokens 5 minutes earlier" This reverts commit 45744de2450b9135a9b3a00b5b1930b671d90705. --- app/src/main/java/eu/faircode/email/ServiceAuthenticator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/main/java/eu/faircode/email/ServiceAuthenticator.java b/app/src/main/java/eu/faircode/email/ServiceAuthenticator.java index d7c1ab1307..0681dba75a 100644 --- a/app/src/main/java/eu/faircode/email/ServiceAuthenticator.java +++ b/app/src/main/java/eu/faircode/email/ServiceAuthenticator.java @@ -65,7 +65,6 @@ public class ServiceAuthenticator extends Authenticator { static final int AUTH_TYPE_OAUTH = 3; static final int AUTH_TYPE_GRAPH = 4; - static final long ADVANCE_REFRESH_TIME = 5 * 60 * 1000L; static final long MIN_REFRESH_INTERVAL = 15 * 60 * 1000L; static final long MIN_FORCE_REFRESH_INTERVAL = 15 * 60 * 1000L; static final int MAX_TOKEN_WAIT = 90; // seconds @@ -162,7 +161,7 @@ public class ServiceAuthenticator extends Authenticator { try { long now = new Date().getTime(); Long expiration = authState.getAccessTokenExpirationTime(); - boolean needsRefresh = (expiration != null && expiration - ADVANCE_REFRESH_TIME < now); + boolean needsRefresh = (expiration != null && expiration < now); if (!needsRefresh && forceRefresh && expiration != null &&