mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
fixed bug when mobile app was unable to send raw file
file name should not contain dots
This commit is contained in:
parent
a24ef44289
commit
ed080ea5fc
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ void subghz_scene_save_name_get_timefilename(FuriString* name) {
|
|||
furi_hal_rtc_get_datetime(&datetime);
|
||||
furi_string_printf(
|
||||
name,
|
||||
"RAW_%.4d.%.2d.%.2d-%.2d.%.2d.%.2d",
|
||||
"RAW_%.4d%.2d%.2d-%.2d%.2d%.2d",
|
||||
datetime.year,
|
||||
datetime.month,
|
||||
datetime.day,
|
||||
|
|
Loading…
Reference in a new issue