Skip to content

Commit ab02046

Browse files
Update lib unity index repo
1 parent 2f7b715 commit ab02046

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

QuestAppVersionSwitcher/PatchingManager.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,15 +211,15 @@ public static bool AttemptDownloadUnstrippedUnity(string version)
211211
try
212212
{
213213
WebClient c = new WebClient();
214-
string libUnityIndexString = ExternalFilesDownloader.DownloadStringWithTimeout("https://raw.githubusercontent.com/Lauriethefish/QuestUnstrippedUnity/main/index.json", 10000);
214+
string libUnityIndexString = ExternalFilesDownloader.DownloadStringWithTimeout("https://raw.githubusercontent.com/QuestPackageManager/QuestUnstrippedUnity/main/index.json", 10000);
215215
Dictionary<string, Dictionary<string, string>> index =
216216
JsonSerializer.Deserialize<Dictionary<string, Dictionary<string, string>>>(libUnityIndexString);
217217
string appId = CoreService.coreVars.currentApp;
218218
if (index.ContainsKey(appId))
219219
{
220220
if (index[appId].ContainsKey(version))
221221
{
222-
ExternalFilesDownloader.DownloadUrl("https://raw.githubusercontent.com/Lauriethefish/QuestUnstrippedUnity/main/versions/" +
222+
ExternalFilesDownloader.DownloadUrl("https://raw.githubusercontent.com/QuestPackageManager/QuestUnstrippedUnity/main/versions/" +
223223
index[appId][version] + ".so", CoreService.coreVars.QAVSTmpPatchingDir + "libunity.so", -1, "");
224224
return true;
225225
}
@@ -765,4 +765,4 @@ public static byte[] GetSplashCover(string apkLocation)
765765
return null;
766766
}
767767
}
768-
}
768+
}

0 commit comments

Comments
 (0)