Skip to content

Commit 5948756

Browse files
committed
Latest Release RM0429-1141-0.101.3-7f6fc02 on PATREON & GitHub - UPD NFC PLAYLIST
2 parents 0e8173c + 79759af commit 5948756

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ReadMe.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ This software is for experimental purposes only and is not meant for any illegal
3939
- Updated: [NFC Seader v2.7 (By bettse)](https://github.com/bettse/seader)
4040
- 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)
4141
- 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)
4243

4344
<a name="release">
4445

applications/external/nfc_playlist/scenes/nfc_playlist_scene_file_rename.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
void nfc_playlist_file_rename_menu_callback(void* context) {
44
NfcPlaylist* nfc_playlist = context;
55
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();
86

97
char const* old_file_path = (char*)furi_string_get_cstr(nfc_playlist->settings.file_path);
108
char const* old_file_name =
119
strchr(old_file_path, '/') != NULL ? &strrchr(old_file_path, '/')[1] : old_file_path;
1210

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+
1414
furi_string_replace(tmp_old_file_path, old_file_name, "");
1515

1616
furi_string_printf(

0 commit comments

Comments
 (0)