diff options
| -rw-r--r-- | ios/MullvadTypes/KeychainError.swift | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ios/MullvadTypes/KeychainError.swift b/ios/MullvadTypes/KeychainError.swift index 5668a31564..d0766bdc9c 100644 --- a/ios/MullvadTypes/KeychainError.swift +++ b/ios/MullvadTypes/KeychainError.swift @@ -21,6 +21,7 @@ public struct KeychainError: LocalizedError, Equatable { public static let duplicateItem = KeychainError(code: errSecDuplicateItem) public static let itemNotFound = KeychainError(code: errSecItemNotFound) + public static let interactionNotAllowed = KeychainError(code: errSecInteractionNotAllowed) public static func == (lhs: KeychainError, rhs: KeychainError) -> Bool { return lhs.code == rhs.code |
