File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 21
21
#include <gui/modules/variable_item_list.h>
22
22
#include "mifare_nested_icons.h"
23
23
24
- #define NESTED_VERSION_APP "1.4.0 "
24
+ #define NESTED_VERSION_APP "1.4.1 "
25
25
#define NESTED_GITHUB_LINK "https://github.com/AloneLiberty/FlipperNested"
26
26
#define NESTED_RECOVER_KEYS_GITHUB_LINK "https://github.com/AloneLiberty/FlipperNestedRecovery"
27
27
#define NESTED_NONCE_FORMAT_VERSION "3"
Original file line number Diff line number Diff line change @@ -552,6 +552,7 @@ bool mifare_nested_worker_check_initial_keys(
552
552
info -> key_type = key_type ;
553
553
info -> block = mifare_nested_worker_get_block_by_sector (sector );
554
554
info -> collected = false;
555
+ info -> skipped = true;
555
556
556
557
nonces -> nonces [sector ][key_type ][tries ] = info ;
557
558
}
@@ -568,6 +569,7 @@ bool mifare_nested_worker_check_initial_keys(
568
569
for (uint8_t tries = 0 ; tries < tries_count ; tries ++ ) {
569
570
Nonces * info = nonces -> nonces [sector ][0 ][tries ];
570
571
info -> collected = true;
572
+ info -> skipped = true;
571
573
572
574
nonces -> nonces [sector ][0 ][tries ] = info ;
573
575
}
@@ -588,6 +590,7 @@ bool mifare_nested_worker_check_initial_keys(
588
590
for (uint8_t tries = 0 ; tries < tries_count ; tries ++ ) {
589
591
Nonces * info = nonces -> nonces [sector ][1 ][tries ];
590
592
info -> collected = true;
593
+ info -> skipped = true;
591
594
592
595
nonces -> nonces [sector ][1 ][tries ] = info ;
593
596
}
You can’t perform that action at this time.
0 commit comments