NFC: Accept non-parsed apps in Mifare DESFire.

Fixes #2040
This commit is contained in:
Michael Huebler
2022-11-22 14:08:45 +01:00
parent 41de5f3c52
commit fa135c3249
+5 -1
View File
@@ -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);