summaryrefslogtreecommitdiffhomepage
path: root/ios
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2020-04-06 12:35:07 +0200
committerAndrej Mihajlov <and@mullvad.net>2020-04-06 13:31:21 +0200
commiteb3975a74b08e992e8d7b3fd1cc48ef1e43f230a (patch)
tree0ee46dd3588e7e5c96868bf143dc0996468b0a82 /ios
parentc543765afe61bcd7937978ac69d3cd496c021d83 (diff)
downloadmullvadvpn-eb3975a74b08e992e8d7b3fd1cc48ef1e43f230a.tar.xz
mullvadvpn-eb3975a74b08e992e8d7b3fd1cc48ef1e43f230a.zip
Drop seconds from account expiry
Diffstat (limited to 'ios')
-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 87d40e87fc..64f85eb0d2 100644
--- a/ios/MullvadVPN/AccountExpiry.swift
+++ b/ios/MullvadVPN/AccountExpiry.swift
@@ -33,7 +33,7 @@ class AccountExpiry {
}
var formattedDate: String {
- return DateFormatter.localizedString(from: date, dateStyle: .medium, timeStyle: .medium)
+ return DateFormatter.localizedString(from: date, dateStyle: .medium, timeStyle: .short)
}
}