From b613f3451481a04b2126fdb92bc9da02f1e580c5 Mon Sep 17 00:00:00 2001 From: Son Roy Almerol Date: Fri, 7 Feb 2025 10:54:48 -0500 Subject: [PATCH] increase refresh plus token interval to 10s --- internal/proxy/js_compiler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/proxy/js_compiler.go b/internal/proxy/js_compiler.go index bf7fe737..02ef45c6 100644 --- a/internal/proxy/js_compiler.go +++ b/internal/proxy/js_compiler.go @@ -54,7 +54,7 @@ const refreshPlusToken = () => { } refreshPlusToken(); -setInterval(refreshPlusToken, 2000); +setInterval(refreshPlusToken, 10000); function encodePathValue(path) { const encoded = btoa(path)