Don't stop if SELECT APPLICATION failed

This commit is contained in:
Nikita Vostokov 2024-01-23 21:03:54 +00:00
parent 87f8f1d9c4
commit 3f6092d95c

View file

@ -82,11 +82,11 @@ static NfcCommand emv_poller_handler_select_application(EmvPoller* instance) {
if(instance->error == EmvErrorNone) {
FURI_LOG_D(TAG, "Select application success");
instance->state = EmvPollerStateGetProcessingOptions;
} else {
FURI_LOG_E(TAG, "Failed to select application");
instance->state = EmvPollerStateReadFailed;
// We have to try GPO request with empty tag
}
instance->state = EmvPollerStateGetProcessingOptions;
return NfcCommandContinue;
}