From 2fd18802a5c6e690aae20c8e4edd21a82c5d4125 Mon Sep 17 00:00:00 2001 From: WillyJL <49810075+WillyJL@users.noreply.github.com> Date: Sat, 10 May 2025 01:27:03 +0100 Subject: [PATCH] NFC: Fix missing parsing with Read Specific Card Type (#411) --- CHANGELOG.md | 3 ++- applications/main/nfc/scenes/nfc_scene_read.c | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c31e51f59..dbed99118 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/applications/main/nfc/scenes/nfc_scene_read.c b/applications/main/nfc/scenes/nfc_scene_read.c index e9603afd1..ff30eb318 100644 --- a/applications/main/nfc/scenes/nfc_scene_read.c +++ b/applications/main/nfc/scenes/nfc_scene_read.c @@ -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); }