Skip to content

Commit 6695a10

Browse files
authored
Update the flow to the new core mods URL and mod repo information
1 parent 34c20b3 commit 6695a10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

QuestAppVersionSwitcher/Assets/html/flows/beat_saber_modding.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ <h2>Upload logs</h2>
612612
UpdateModdedStatus().then(res => {
613613
fetch(start + `/api/mods/installfromurl`, {
614614
method: "POST",
615-
body: `https://oculusdb.rui2015.me/api/coremodsdownload/${moddedStatus.version}.qmod`
615+
body: `https://raw.githubusercontent.com/QuestPackageManager/bs-coremods/main/core_mods.json?${new Date().getTime()}`
616616
}).then(res => {
617617
localStorage.openMainDefault = true
618618
location = start + "/?tab=mods"
@@ -774,7 +774,7 @@ <h2>Upload logs</h2>
774774
function UpdateSupportedBeatSaberVersions() {
775775
return new Promise((resolve, reject) => {
776776
SupportedBeatSaberVersions = []
777-
fetch("https://computerelite.github.io/tools/Beat_Saber/coreMods.json").then(res => res.json().then(j => {
777+
fetch(`https://raw.githubusercontent.com/QuestPackageManager/bs-coremods/main/core_mods.json?${new Date().getTime()}`).then(res => res.json().then(j => {
778778
for(const [key, value] of Object.entries(j)) {
779779
SupportedBeatSaberVersions.push(key);
780780
}

0 commit comments

Comments
 (0)