From c0401eca2481a415b616c45f3695f132fb7b4cbb Mon Sep 17 00:00:00 2001 From: Usman Shafiq Date: Sun, 1 Sep 2024 04:39:11 -0400 Subject: [PATCH] Make VRCX update rate uniform (#892) --- html/src/app.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/html/src/app.js b/html/src/app.js index f3dd8b9d..6ab8c52a 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -5787,11 +5787,7 @@ speechSynthesis.getVoices(); AppApi.CheckGameRunning(); } if (--this.nextAppUpdateCheck <= 0) { - if (this.branch === 'Stable') { - this.nextAppUpdateCheck = 14400; // 2hours - } else { - this.nextAppUpdateCheck = 7200; // 1hour - } + this.nextAppUpdateCheck = 7200; // 1hour if (this.autoUpdateVRCX !== 'Off') { this.checkForVRCXUpdate(); }