NFC: Fix missing parsing with Read Specific Card Type (#411)

This commit is contained in:
WillyJL
2025-05-10 01:27:03 +01:00
parent 2ed0c90e36
commit 2fd18802a5
2 changed files with 8 additions and 1 deletions
+2 -1
View File
@@ -14,10 +14,11 @@
### Fixed:
- CLI:
- Fix crash when opening CLI/qFlipper/WebUpdater if some unexpected files are present in `/ext/apps_data/cli/plugins` (by @WillyJL)
- FIx crash with `ir universal` command (by @WillyJL)
- Fix crash with `ir universal` command (by @WillyJL)
- Fix crash with `date` command (by @WillyJL)
- Fix temporary `nfc apdu` command (by @WillyJL)
- OFW: Fix subghz chat command (by @GameLord2011)
- NFC: Fix card info not being parsed when using Extra Actions > Read Specific Card Type (by @WillyJL)
- BadKB: Fix key combos main keys being case sensitive (by @WillyJL)
- Sub-GHz:
- UL: Fix CAME 24bit decoder (by @xMasterX)
@@ -1,6 +1,12 @@
#include "../helpers/protocol_support/nfc_protocol_support.h"
#include "../nfc_app_i.h"
void nfc_scene_read_on_enter(void* context) {
NfcApp* instance = context;
nfc_show_loading_popup(instance, true);
nfc_supported_cards_load_cache(instance->nfc_supported_cards);
nfc_show_loading_popup(instance, false);
nfc_protocol_support_on_enter(NfcProtocolSupportSceneRead, context);
}