Skip to content

Commit ae35cd0

Browse files
committed
[skip ci] Fix update url
1 parent 4de105a commit ae35cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/backend/src/update.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub async fn check_for_updates(http_client: reqwest::Client, send: FrontendHandl
3232

3333
let current_version = schema::forge::VersionFragment::string_to_parts(version);
3434

35-
let url = format!("{repository_url}/releases/download/latest/update_{}.json", std::env::consts::OS);
35+
let url = format!("{repository_url}/releases/latest/download/update_{}.json", std::env::consts::OS);
3636
let response = http_client.get(url).send().await;
3737

3838
let response = match response {

0 commit comments

Comments
 (0)