diff options
| author | Emīls <emils@mullvad.net> | 2022-02-17 13:03:22 +0000 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2022-02-17 13:03:22 +0000 |
| commit | 38e46256809c6420a9850a2eaa1d3520cc56aceb (patch) | |
| tree | 40e7d9fd03daee081e71f068166785df8c7243d7 | |
| parent | 5dbafe4d43ae91db37196277822ee2c3e913e087 (diff) | |
| download | mullvadvpn-38e46256809c6420a9850a2eaa1d3520cc56aceb.tar.xz mullvadvpn-38e46256809c6420a9850a2eaa1d3520cc56aceb.zip | |
Unblock API when connecting to relay
| -rw-r--r-- | mullvad-daemon/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mullvad-daemon/src/lib.rs b/mullvad-daemon/src/lib.rs index 2ef7bccc39..35fe554615 100644 --- a/mullvad-daemon/src/lib.rs +++ b/mullvad-daemon/src/lib.rs @@ -2495,6 +2495,7 @@ where } fn connect_tunnel(&mut self) { + self.rpc_runtime.availability_handle().resume_background(); self.send_tunnel_command(TunnelCommand::Connect); } |
