Provide user friendly account error for 403 status code (FORBIDDEN)
This commit is contained in:
parent
f7017aaed5
commit
61b788a1de
|
@ -27,7 +27,7 @@ public enum AccountError: LocalizedError {
|
||||||
case .wrappedError(let error, let account):
|
case .wrappedError(let error, let account):
|
||||||
switch error {
|
switch error {
|
||||||
case TransportError.httpError(let status):
|
case TransportError.httpError(let status):
|
||||||
if status == 401 {
|
if status == 401 || status == 403 {
|
||||||
let localizedText = NSLocalizedString("Your “%@” credentials are invalid or expired.", comment: "Invalid or expired")
|
let localizedText = NSLocalizedString("Your “%@” credentials are invalid or expired.", comment: "Invalid or expired")
|
||||||
return NSString.localizedStringWithFormat(localizedText as NSString, account.nameForDisplay) as String
|
return NSString.localizedStringWithFormat(localizedText as NSString, account.nameForDisplay) as String
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue