summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2020-04-02 15:32:21 +0200
committerAndrej Mihajlov <and@mullvad.net>2020-04-02 15:32:21 +0200
commit17a3ea0f079f9439ae3f9fd63bc2df2362aa8d65 (patch)
tree7e082ca4779b78606ab75defa042e5887ff8564e
parent85976f18449fda3504e95324df343f909011e6be (diff)
downloadmullvadvpn-17a3ea0f079f9439ae3f9fd63bc2df2362aa8d65.tar.xz
mullvadvpn-17a3ea0f079f9439ae3f9fd63bc2df2362aa8d65.zip
Tweak operator in expiration check
-rw-r--r--ios/MullvadVPN/AccountExpiry.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/AccountExpiry.swift b/ios/MullvadVPN/AccountExpiry.swift
index 85f3159d62..87d40e87fc 100644
--- a/ios/MullvadVPN/AccountExpiry.swift
+++ b/ios/MullvadVPN/AccountExpiry.swift
@@ -25,7 +25,7 @@ class AccountExpiry {
}
var isExpired: Bool {
- return date < Date()
+ return date <= Date()
}
var formattedRemainingTime: String? {