Merge remote-tracking branch 'ofw/dev' into mntm-dev

This commit is contained in:
Willy-JL
2024-07-13 23:53:47 +01:00
2 changed files with 4 additions and 2 deletions

View File

@@ -117,7 +117,9 @@
- OFW: Disable logging in mjs +2k free flash (by @hedger)
- OFW: RPC: Fix input lockup on disconnect (by @Willy-JL)
- OFW: ELF/Flipper application: Do not crash on "out of memory" (by @DrZlo13)
- OFW: NFC: Fixed infinite loop in dictionary attack scene (by @RebornedBrain)
- NFC:
- OFW: Fixed infinite loop in dictionary attack scene (by @RebornedBrain)
- OFW: ISO15693 Render Typo Fix (by @zinongli)
- OFW: Desktop: Lockup fix, GUI improvements (by @skotopes)
- OFW: Loader: Fix crash on locked via cli loader (by @DrZlo13)
- OFW: Archive: Fix memory leak in favorites add/remove (by @skotopes)

View File

@@ -71,7 +71,7 @@ void nfc_render_iso15693_3_system_info(const Iso15693_3Data* data, FuriString* s
void nfc_render_iso15693_3_extra(const Iso15693_3Data* data, FuriString* str) {
furi_string_cat(str, "\n::::::::::::::::[General info]:::::::::::::::::\n");
if(data->system_info.flags & ISO15693_3_SYSINFO_FLAG_DSFID) {
furi_string_cat_printf(str, "DSFID: %02X\n", data->system_info.ic_ref);
furi_string_cat_printf(str, "DSFID: %02X\n", data->system_info.dsfid);
}
if(data->system_info.flags & ISO15693_3_SYSINFO_FLAG_AFI) {