summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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()
}
}