summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2025-02-26 15:33:36 +0100
committerDavid Lönnhager <david.l@mullvad.net>2025-03-05 23:32:23 +0100
commit1899613b3eae42c82469ff68b5e244186731fee5 (patch)
tree80a0ddceb34dcb92cce6bfc1610d390561af971c
parent04065696aa21baedf4cb9db4410798d1ed8b6b15 (diff)
downloadmullvadvpn-1899613b3eae42c82469ff68b5e244186731fee5.tar.xz
mullvadvpn-1899613b3eae42c82469ff68b5e244186731fee5.zip
Remove updates- prefix in installer-downloader
-rw-r--r--installer-downloader/src/controller.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer-downloader/src/controller.rs b/installer-downloader/src/controller.rs
index dbbcbcf2aa..dca4879d18 100644
--- a/installer-downloader/src/controller.rs
+++ b/installer-downloader/src/controller.rs
@@ -48,7 +48,7 @@ pub fn initialize_controller<T: AppDelegate + 'static>(delegate: &mut T) {
AppController::initialize::<_, Downloader<T>, _, DirProvider>(delegate, version_provider)
}
-/// JSON files should be stored at `<base url>/updates-<platform>.json`.
+/// JSON files should be stored at `<base url>/<platform>.json`.
fn get_metadata_url() -> String {
const PLATFORM: &str = if cfg!(target_os = "windows") {
"windows"
@@ -57,7 +57,7 @@ fn get_metadata_url() -> String {
} else {
panic!("Unsupported platform")
};
- format!("https://releases.stagemole.eu/desktop/metadata/updates-{PLATFORM}.json")
+ format!("https://releases.stagemole.eu/desktop/metadata/{PLATFORM}.json")
}
impl AppController {