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);