From 066cd63771e18578774097e875bb2d7335c152aa Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 4 Apr 2020 18:29:36 +0200 Subject: [PATCH] Schedule token renew every minute --- src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index d77ce00bb..6b2209e98 100644 --- a/src/App.vue +++ b/src/App.vue @@ -283,10 +283,10 @@ } ); - // Schedule a token renew every 60 minutes + // Schedule a token renew every minute setTimeout(() => { auth.renewToken() - }, 1000 * 60 * 60) + }, 1000 * 60) // Set the motd this.setMotd()