Skip to content

Commit

Permalink
Make VRCX update rate uniform (#892)
Browse files Browse the repository at this point in the history
  • Loading branch information
DubyaDude committed Sep 1, 2024
1 parent 8c4e4af commit c0401ec
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions html/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit c0401ec

Please sign in to comment.