diff --git a/ReadMe.md b/ReadMe.md index 93c2b4ce8ec..ee6e3248503 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -44,6 +44,7 @@ This software is for experimental purposes only and is not meant for any illegal - Relocated Picopass Folder, Move folder into apps_data. - Re-Added: [Color Guess (By leedave)](https://github.com/leedave/Leeds-Flipper-Zero-Applications) - Fixed issue with BadUSB not shown on Main Menu (Only as FAP) +- Fix NFC Magic Gen4 Load Path diff --git a/applications/plugins/nfc_magic_gen4/scenes/nfc_magic_scene_file_select.c b/applications/plugins/nfc_magic_gen4/scenes/nfc_magic_scene_file_select.c index 1fed99c028e..1e38bb1cd00 100644 --- a/applications/plugins/nfc_magic_gen4/scenes/nfc_magic_scene_file_select.c +++ b/applications/plugins/nfc_magic_gen4/scenes/nfc_magic_scene_file_select.c @@ -42,8 +42,8 @@ void nfc_magic_scene_file_select_on_enter(void* context) { nfc_device_set_loading_callback( nfc_magic->source_dev, nfc_magic_show_loading_popup, nfc_magic); - if(!furi_string_size(nfc_magic->nfc_dev->load_path)) { - furi_string_set_str(nfc_magic->nfc_dev->load_path, NFC_APP_FOLDER); + if(!furi_string_size(nfc_magic->source_dev->load_path)) { + furi_string_set_str(nfc_magic->source_dev->load_path, NFC_APP_FOLDER); } if(nfc_file_select(nfc_magic->source_dev)) {