Parcourir la source

add uncached config.json fetch

Mistivia il y a 1 mois
Parent
commit
cd1428d17b
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      src/main.js

+ 3 - 1
src/main.js

@@ -22,7 +22,9 @@ function fetchJSONSync(url) {
     }
 }
 
-globalConfig = fetchJSONSync('./config.json');
+const timestamp = new Date().getTime();
+globalConfig = fetchJSONSync('./config.json' + '?t=' + timestamp);
+
 for (let key in globalConfig) {
     if (globalConfig[key]["type"] === undefined) {
         globalConfig[key].type = 'openai';