diff options
| author | David Lönnhager <david.l@mullvad.net> | 2022-09-07 10:32:32 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2022-09-13 15:57:40 +0200 |
| commit | 45b393907e950a739baf8541c3f65d0cff4ca68d (patch) | |
| tree | b9110f125df1ac33c4fda3fbebdef05c9314736a | |
| parent | ae6694643b10aaa7bb611aff5d5d9dc2912a9565 (diff) | |
| download | mullvadvpn-45b393907e950a739baf8541c3f65d0cff4ca68d.tar.xz mullvadvpn-45b393907e950a739baf8541c3f65d0cff4ca68d.zip | |
Explain continual reconnect on 'AuthFailed'
| -rw-r--r-- | mullvad-daemon/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mullvad-daemon/src/lib.rs b/mullvad-daemon/src/lib.rs index cfbcbb322c..b4797d7f28 100644 --- a/mullvad-daemon/src/lib.rs +++ b/mullvad-daemon/src/lib.rs @@ -895,6 +895,8 @@ where } if let ErrorStateCause::AuthFailed(_) = error_state.cause() { + // If time is added outside of the app, no notifications + // are received. So we must continually try to reconnect. self.schedule_reconnect(Duration::from_secs(60)) } } |
