summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/LocationInfo.kt2
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4a28bf39b5..8a4576410f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -46,6 +46,7 @@ Line wrap the file at 100 chars. Th
#### Android
- Show WireGuard key age in local timezone instead of UTC.
- Fix notification button icons.
+- Fix collapsing tunnel information causing tunnel out IP address information to be lost.
## [2019.8] - 2019-09-23
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/LocationInfo.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/LocationInfo.kt
index f0850326b2..113b416195 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/LocationInfo.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/LocationInfo.kt
@@ -24,6 +24,8 @@ class LocationInfo(val parentView: View, val context: Context) {
var location: GeoIpLocation? = null
set(value) {
+ field = value
+
country.text = value?.country ?: ""
city.text = value?.city ?: ""
hostname.text = value?.hostname ?: ""