Skip to content

Commit

Permalink
Fix NFC Magic Gen4 Load Path
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed Feb 28, 2023
1 parent 80e143c commit 5eb5e99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<a name="release">

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 5eb5e99

Please sign in to comment.