You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let github_changes_url = format!("https://raw.githubusercontent.com/mullvad/mullvadvpn-app/refs/tags/{version}/desktop/packages/mullvad-vpn/changes.txt");
let changes = reqwest::get(github_changes_url)
.await
.context("Failed to retrieve changes.txt (tag missing?)")?;
if let Err(err) = changes.error_for_status_ref() {
return Err(err).context("Error status returned when downloading changes.txt");
}
changes
.text()
.await
.context("Failed to retrieve text for changes.txt (tag missing?)")