From fa135c32498ac86d22cd8d129beb009f483affa5 Mon Sep 17 00:00:00 2001 From: Michael Huebler Date: Tue, 22 Nov 2022 14:08:45 +0100 Subject: [PATCH] NFC: Accept non-parsed apps in Mifare DESFire. Fixes #2040 --- lib/nfc/nfc_device.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/nfc/nfc_device.c b/lib/nfc/nfc_device.c index 9f17aed3a..40574612b 100644 --- a/lib/nfc/nfc_device.c +++ b/lib/nfc/nfc_device.c @@ -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);