Merge branch 'main' into feature/update-to-3x

This commit is contained in:
Momo the Monster 2023-10-24 13:32:15 -07:00 committed by GitHub
commit 215ca1691a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.IO;
using System.Net;
using System.Text.RegularExpressions;
@ -58,7 +58,7 @@ namespace VRC.PackageManagement.Core
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 @@ namespace VRC.PackageManagement.Core
}
}
}
}
}