mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
Merge pull request #912 from immense/fix-linux-update-url
Fix Linux update URL.
This commit is contained in:
commit
24759cecc9
@ -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(
|
||||
|
||||
@ -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(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user