summaryrefslogtreecommitdiffhomepage
path: root/android/lib/model/src
diff options
context:
space:
mode:
Diffstat (limited to 'android/lib/model/src')
-rw-r--r--android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/PrepareError.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/PrepareError.kt b/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/PrepareError.kt
index 8954c5f98a..2fea9a9211 100644
--- a/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/PrepareError.kt
+++ b/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/PrepareError.kt
@@ -5,10 +5,10 @@ import android.content.Intent
sealed interface PrepareResult
sealed interface PrepareError : PrepareResult {
- // Result from VpnService.prepare() being invoked with legacy VPN app has always-on
+ // Legacy VPN profile is active as Always-on
data object OtherLegacyAlwaysOnVpn : PrepareError
- // Prepare gives intent but there is other always VPN app
+ // Another VPN app is active as Always-on
data class OtherAlwaysOnApp(val appName: String) : PrepareError
data class NotPrepared(val prepareIntent: Intent) : PrepareError