summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-05-08 09:02:14 -0300
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-05-08 09:02:14 -0300
commitf06dfd57569e737a4b8815e7034be18eae6703d0 (patch)
tree4959f3477ec1bf5d5d0d64a0a086ca3d9e3afe3c
parent184330c1dcebd69f42f26be7bd8226319db9cc0d (diff)
parent693cf1d758902fd4c9e0782ce3e9f0665ff1ebd8 (diff)
downloadmullvadvpn-f06dfd57569e737a4b8815e7034be18eae6703d0.tar.xz
mullvadvpn-f06dfd57569e737a4b8815e7034be18eae6703d0.zip
Merge branch 'fix-settings-listener'
-rw-r--r--CHANGELOG.md3
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/ui/ServiceConnection.kt1
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 85fc9d7897..ea74de674b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -42,7 +42,7 @@ Line wrap the file at 100 chars. Th
- Adjust the minimum supported Android version to correctly reflect the supported versions decided
in 2020.4-beta2. The app will now only install on Android 7 and later (API level 24).
-
+### Fixed
#### Android
- Fix crash when leaving WireGuard Key screen while key is still verifying.
- Fix crash that sometimes happens right after some other unrelated crash.
@@ -50,6 +50,7 @@ Line wrap the file at 100 chars. Th
isn't running. It would previously just open the app UI and stay in the disconnected state.
- Fix crash when requesting to connect from notification or quick-settings tile.
- Fix version update notifications not appearing.
+- Fix UI losing any settings updates that happen after leaving the app and then coming back.
## [2020.4-beta4] - 2020-05-06
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/ServiceConnection.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/ServiceConnection.kt
index 216b1b0607..df6398c887 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/ServiceConnection.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/ServiceConnection.kt
@@ -28,6 +28,5 @@ class ServiceConnection(private val service: ServiceInstance, val mainActivity:
appVersionInfoCache.onDestroy()
keyStatusListener.onDestroy()
relayListListener.onDestroy()
- settingsListener.onDestroy()
}
}