diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-05-13 13:08:49 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-05-13 13:08:49 +0200 |
| commit | d36f215dd5170e50cb2c668fc9c42ae7ecaeac2c (patch) | |
| tree | 2fa86da7859ba4dd8284c01368d09d0ae77a5e42 | |
| parent | 34a2cb183a95648d9080c562f4bad2cbd31ab557 (diff) | |
| parent | fec1477bed94f80a397e26328562ddb71c570603 (diff) | |
| download | mullvadvpn-d36f215dd5170e50cb2c668fc9c42ae7ecaeac2c.tar.xz mullvadvpn-d36f215dd5170e50cb2c668fc9c42ae7ecaeac2c.zip | |
Merge branch 'fix-logging-err'
| -rw-r--r-- | installer-downloader/src/controller.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer-downloader/src/controller.rs b/installer-downloader/src/controller.rs index 08353c0596..cf63154719 100644 --- a/installer-downloader/src/controller.rs +++ b/installer-downloader/src/controller.rs @@ -264,8 +264,8 @@ impl<D: AppDelegate + 'static, A: From<UiAppDownloaderParameters<D>> + AppDownlo } fn handle_try_beta(&mut self) { - log::error!("Attempted 'try beta' without beta version"); let Some(beta_info) = self.version_info.beta.as_ref() else { + log::error!("Attempted 'try beta' without beta version"); return; }; |
