summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2021-04-28 22:04:55 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2021-04-29 11:06:37 +0000
commitf346f03f2cdbd8896bc4fdc5ef7443c271863688 (patch)
tree5e3fc89246a487fd796a04de32750053eebaf90e
parent819a7a5fe4885bf808da6e5e57982fad21f6c9bb (diff)
downloadmullvadvpn-f346f03f2cdbd8896bc4fdc5ef7443c271863688.tar.xz
mullvadvpn-f346f03f2cdbd8896bc4fdc5ef7443c271863688.zip
Remove redundant `null` service conn. notification
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt
index 464f5e8962..7f3f4de4a8 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt
@@ -55,7 +55,6 @@ open class MainActivity : FragmentActivity() {
override fun onServiceDisconnected(className: ComponentName) {
android.util.Log.d("mullvad", "UI lost the connection to the service")
serviceConnection = null
- serviceNotifier.notify(null)
}
}