Merge pull request #912 from immense/fix-linux-update-url

Fix Linux update URL.
This commit is contained in:
Jared Goodwin 2024-07-16 06:48:34 -07:00 committed by GitHub
commit 24759cecc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ public class UpdaterLinux : IUpdater
}
await _updateDownloader.DownloadFile(
$"{serverUrl}/API/ClientDownloads/{connectionInfo.OrganizationID}/{platform}",
$"{serverUrl}/API/ClientDownloads/{platform}/{connectionInfo.OrganizationID}",
installerPath);
await _updateDownloader.DownloadFile(

View File

@ -137,7 +137,7 @@ public class UpdaterMac : IUpdater
var installerPath = Path.Combine(Path.GetTempPath(), "RemotelyUpdate.sh");
await _updateDownloader.DownloadFile(
$"{serverUrl}/API/ClientDownloads/{connectionInfo.OrganizationID}/MacOSInstaller-{_achitecture}",
$"{serverUrl}/API/ClientDownloads/MacOSInstaller-{_achitecture}/{connectionInfo.OrganizationID}",
installerPath);
await _updateDownloader.DownloadFile(