mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
Don't stop if SELECT APPLICATION failed
This commit is contained in:
parent
87f8f1d9c4
commit
3f6092d95c
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue