Skip to content

Commit

Permalink
fixup: err
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed Nov 22, 2024
1 parent f31df17 commit 101781d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mullvad-daemon/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ impl Daemon {
error.display_chain_with_msg("Failed to start connectivity listener")
);
})
.map_err(|_| Err(Error::DaemonUnavailable))?;
.map_err(|_| Error::DaemonUnavailable)?;

mullvad_api::proxy::ApiConnectionMode::try_delete_cache(&cache_dir).await;
let api_runtime = mullvad_api::Runtime::with_cache(
Expand Down

0 comments on commit 101781d

Please sign in to comment.