From a3ef61cb95fd7c3d936f7ed919005f88ddcac410 Mon Sep 17 00:00:00 2001 From: Momo the Monster <737888+momo-the-monster@users.noreply.github.com> Date: Thu, 20 Apr 2023 09:48:54 -0700 Subject: [PATCH] Update Bootstrap.cs to remove Cache --- Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs b/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs index 83562eb..b64a0e5 100644 --- a/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs +++ b/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs @@ -58,7 +58,7 @@ public static async Task AddResolver() return; } - var url = $"{bootstrapMatch.Groups[1].Value}&cache={Guid.NewGuid()}"; + var url = bootstrapMatch.Groups[1].Value; var targetFile = Path.Combine(Path.GetTempPath(), $"resolver-{DateTime.Now.ToString("yyyyMMddTHHmmss")}.unitypackage"); @@ -89,4 +89,4 @@ public static async Task GetRemoteString(string url) } } } -} \ No newline at end of file +}