Skip to content

Commit

Permalink
1.4.5 - Fix .nested folder if running Hard Nested
Browse files Browse the repository at this point in the history
Closes #8
  • Loading branch information
AloneLiberty committed May 10, 2023
1 parent 9396a09 commit 3a1bd74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mifare_nested_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <gui/modules/variable_item_list.h>
#include "mifare_nested_icons.h"

#define NESTED_VERSION_APP "1.4.4"
#define NESTED_VERSION_APP "1.4.5"
#define NESTED_GITHUB_LINK "https://github.com/AloneLiberty/FlipperNested"
#define NESTED_RECOVER_KEYS_GITHUB_LINK "https://github.com/AloneLiberty/FlipperNestedRecovery"
#define NESTED_NONCE_FORMAT_VERSION "3"
Expand Down
2 changes: 2 additions & 0 deletions mifare_nested_worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,8 @@ void mifare_nested_worker_collect_nonces_hard(MifareNestedWorker* mifare_nested_
FURI_LOG_I(TAG, "Found Mifare Classic Mini tag");
}

furi_string_set(folder_path, NESTED_FOLDER);
storage_common_mkdir(storage, furi_string_get_cstr(folder_path));
mifare_nested_worker_get_hardnested_folder_path(&data, folder_path);
storage_common_mkdir(storage, furi_string_get_cstr(folder_path));
furi_string_free(folder_path);
Expand Down

0 comments on commit 3a1bd74

Please sign in to comment.