Skip to content

Commit

Permalink
NFC: Accept non-parsed apps in Mifare DESFire.
Browse files Browse the repository at this point in the history
  • Loading branch information
mh- committed Nov 22, 2022
1 parent 41de5f3 commit fa135c3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/nfc/nfc_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,11 @@ bool nfc_device_load_mifare_df_data(FlipperFormat* file, NfcDevice* dev) {
*app_head = app;
app_head = &app->next;
}
if(!parsed_apps) break;
if(!parsed_apps) {
// break;
// accept non-parsed apps.
FURI_LOG_W("nfc_device.c", "Non-parsed apps found!");
}
}
parsed = true;
} while(false);
Expand Down

0 comments on commit fa135c3

Please sign in to comment.