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/ErrorStateCause.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/ErrorStateCause.kt b/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/ErrorStateCause.kt
index 3af72d663b..ef5947c89a 100644
--- a/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/ErrorStateCause.kt
+++ b/android/lib/model/src/main/kotlin/net/mullvad/mullvadvpn/lib/model/ErrorStateCause.kt
@@ -3,7 +3,7 @@ package net.mullvad.mullvadvpn.lib.model
import java.net.InetAddress
sealed class ErrorStateCause {
- class AuthFailed(private val error: AuthFailedError) : ErrorStateCause() {
+ class AuthFailed(val error: AuthFailedError) : ErrorStateCause() {
fun isCausedByExpiredAccount(): Boolean {
return error is AuthFailedError.ExpiredAccount
}