From 2e69e4eea756576489c10d94f258aa70d807d72a Mon Sep 17 00:00:00 2001 From: vicent Date: Wed, 24 May 2023 15:16:10 +0200 Subject: [PATCH] a --- front/core/services/auth.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/front/core/services/auth.js b/front/core/services/auth.js index d1ac4c78d3..17323fadf7 100644 --- a/front/core/services/auth.js +++ b/front/core/services/auth.js @@ -61,9 +61,8 @@ export default class Auth { window.localStorage.renewPeriod = json.data.renewPeriod; window.localStorage.renewInterval = json.data.renewInterval; - this.checkTokenValidity(); - const intervalMilliseconds = 50 * 1000; - // setInterval(this.checkTokenValidity.bind(this), intervalMilliseconds); + const intervalMilliseconds = json.data.renewInterval * 1000; + setInterval(this.checkTokenValidity.bind(this), intervalMilliseconds); }); }