diff --git a/CHANGELOG.md b/CHANGELOG.md index 758dd18ce..9aa4f9834 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/applications/main/nfc/plugins/supported_cards/clipper.c b/applications/main/nfc/plugins/supported_cards/clipper.c index 7dc164a7a..51fbd92ce 100644 --- a/applications/main/nfc/plugins/supported_cards/clipper.c +++ b/applications/main/nfc/plugins/supported_cards/clipper.c @@ -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();