Browse Source

clear code

Marino Faggiana 7 years ago
parent
commit
a461b2b7f3
1 changed files with 3 additions and 3 deletions
  1. 3 3
      iOSClient/Security/NCEntoToEndInterface.swift

+ 3 - 3
iOSClient/Security/NCEntoToEndInterface.swift

@@ -235,9 +235,6 @@ class NCEntoToEndInterface : NSObject, OCNetworkingDelegate  {
         case 400:
             appDelegate.messageNotification("E2E get privateKey", description: "bad request: unpredictable internal error", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
             
-        case 403:
-            appDelegate.messageNotification("E2E get privateKey", description: "forbidden: the user can't access the private key", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
-            
         case 404:
             // message
             let e2ePassphrase = NYMnemonic.generateString(128, language: "english")
@@ -269,6 +266,9 @@ class NCEntoToEndInterface : NSObject, OCNetworkingDelegate  {
             alertController.addAction(OKAction)
             appDelegate.activeMain.present(alertController, animated: true)
             
+        case 409:
+            appDelegate.messageNotification("E2E get privateKey", description: "forbidden: the user can't access the private key", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
+            
         default:
             appDelegate.messageNotification("E2E get privateKey", description: message as String!, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
         }