diff --git a/ios/StatusKeycard.swift b/ios/StatusKeycard.swift index 701e2a7..81e1d17 100644 --- a/ios/StatusKeycard.swift +++ b/ios/StatusKeycard.swift @@ -199,7 +199,7 @@ class StatusKeycard: RCTEventEmitter { let nsError = error as NSError if nsError.code == 200 && nsError.domain == "NFCError" { self.sendEvent(withName: "keyCardOnNFCUserCancelled", body: nil) - } else if nsError.code == 201 && nsError.domain == "NFCError" { + } else if (nsError.code == 201 || nsError.code == 203) && (nsError.domain == "NFCError") { self.sendEvent(withName: "keyCardOnNFCTimeout", body: nil) } }