fixed bug when mobile app was unable to send raw file

file name should not contain dots
This commit is contained in:
MX 2022-10-22 13:09:41 +03:00
parent a24ef44289
commit ed080ea5fc
No known key found for this signature in database
GPG key ID: 6C4C311DFD4B4AB5

View file

@ -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,