mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-29 21:52:03 -07:00
NFC: Fix missing parsing with Read Specific Card Type (#411)
This commit is contained in:
+2
-1
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user