We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9397e6f commit aa22042Copy full SHA for aa22042
2 files changed
.gitignore
@@ -1,4 +1,5 @@
1
/QuestAppVersionSwitcher/bin
2
/QuestAppVersionSwitcher/obj
3
/.idea
4
-/.vs
+/.vs
5
+/.vscode
QuestAppVersionSwitcher/Assets/html/flows/beat_saber_modding.html
@@ -607,8 +607,11 @@ <h2>Upload logs</h2>
607
}
608
609
var patchReport = {}
610
+ var isInstallingCores = false;
611
612
function InstallCoreModsAndGetMods() {
613
+ if (isInstallingCores) return;
614
+ isInstallingCores = true;
615
UpdateModdedStatus().then(res => {
616
fetch(`https://raw.githubusercontent.com/QuestPackageManager/bs-coremods/main/core_mods.json?${new Date().getTime()}`).then(res => {
617
if (!res.ok) {
0 commit comments