Merge branch 'ul-pr-903' into mntm-dev --nobuild

This commit is contained in:
WillyJL
2025-05-22 19:35:35 +01:00
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -25,7 +25,9 @@
- Fix crash with `date` command (by @WillyJL)
- Fix temporary `nfc apdu` command (by @WillyJL)
- OFW: Fix subghz chat command (by @GameLord2011)
- NFC: Fix card info not being parsed when using Extra Actions > Read Specific Card Type (by @WillyJL)
- NFC:
- Fix card info not being parsed when using Extra Actions > Read Specific Card Type (by @WillyJL)
- UL: Fix clipper date timestamp (by @luu176)
- BadKB: Fix key combos main keys being case sensitive (by @WillyJL)
- Sub-GHz:
- UL: Fix CAME 24bit decoder (by @xMasterX)
@@ -548,7 +548,7 @@ static void furi_string_cat_timestamp(
const char* time_hdr,
uint32_t tmst_1900) {
DateTime tm;
tmst_1900 -= 2208988800; // Clipper uses epoch from 1900, not 1970.
datetime_timestamp_to_datetime(tmst_1900, &tm);
FuriString* date_str = furi_string_alloc();