File tree 2 files changed +4
-3
lines changed
applications/external/nfc_playlist/scenes
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ This software is for experimental purposes only and is not meant for any illegal
39
39
- Updated: [ NFC Seader v2.7 (By bettse)] ( https://github.com/bettse/seader )
40
40
- Updated: [ BLE Spam v6.3 (By Willy-JL & ECTO-1A & Spooks4576 with research from xMasterX; OFW API thanks to noproto)] ( https://github.com/Next-Flip/Momentum-Apps/tree/dev/ble_spam )
41
41
- Updated: [ ESP Flasher v1.5 (By 0xchocolate)] ( https://github.com/0xchocolate/flipperzero-esp-flasher ) (CMAKE Update)
42
+ - Updated: [ NFC Playlist v1.7 (By acegoal07)] ( https://github.com/acegoal07/FlipperZero_NFC_Playlist/tree/main )
42
43
43
44
<a name =" release " >
44
45
Original file line number Diff line number Diff line change 3
3
void nfc_playlist_file_rename_menu_callback (void * context ) {
4
4
NfcPlaylist * nfc_playlist = context ;
5
5
Storage * storage = furi_record_open (RECORD_STORAGE );
6
- FuriString * tmp_old_file_path = furi_string_alloc ();
7
- FuriString * tmp_new_file_path = furi_string_alloc ();
8
6
9
7
char const * old_file_path = (char * )furi_string_get_cstr (nfc_playlist -> settings .file_path );
10
8
char const * old_file_name =
11
9
strchr (old_file_path , '/' ) != NULL ? & strrchr (old_file_path , '/' )[1 ] : old_file_path ;
12
10
13
- furi_string_printf (tmp_old_file_path , "%s" , old_file_path );
11
+ FuriString * tmp_old_file_path = furi_string_alloc ();
12
+ FuriString * tmp_new_file_path = furi_string_alloc_set_str (old_file_path );
13
+
14
14
furi_string_replace (tmp_old_file_path , old_file_name , "" );
15
15
16
16
furi_string_printf (
You can’t perform that action at this time.
0 commit comments