Switch from sha256.txt to digest

This commit is contained in:
Natsumi
2025-08-09 12:56:12 +12:00
parent fd87bb4509
commit 42fadd7e65
5 changed files with 62 additions and 107 deletions

View File

@@ -4,9 +4,9 @@ namespace VRCX;
public partial class AppApi
{
public async Task DownloadUpdate(string fileUrl, string fileName, string hashUrl, int downloadSize)
public async Task DownloadUpdate(string fileUrl, string hashString, int downloadSize)
{
await Update.DownloadUpdate(fileUrl, fileName, hashUrl, downloadSize);
await Update.DownloadUpdate(fileUrl, hashString, downloadSize);
}
public void CancelUpdate()