Skip to content

Commit 5958ffb

Browse files
update unstripped libunity repo
1 parent 4210f1e commit 5958ffb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

QuestAppVersionSwitcher/PatchingManager.cs

Lines changed: 2 additions & 2 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
}

0 commit comments

Comments
 (0)