From 525f9dcfb2d92a28ea9ff29c3a7dc1930423c309 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 16 Sep 2021 06:49:11 +0200 Subject: [PATCH] Fix today for translated date break (#1915) * add using timestamp offset from network for sending part1 * remove MessageController as we now rely on the database * fix tests for message sending overriding timestamp * Fixs date break translations of today etc Relates #1913 --- ts/components/conversation/message/DateBreak.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ts/components/conversation/message/DateBreak.tsx b/ts/components/conversation/message/DateBreak.tsx index 08706e614..81dbaefd1 100644 --- a/ts/components/conversation/message/DateBreak.tsx +++ b/ts/components/conversation/message/DateBreak.tsx @@ -18,11 +18,6 @@ const DateBreakText = styled.div` export const MessageDateBreak = (props: { timestamp: number; messageId: string }) => { const { timestamp, messageId } = props; const text = moment(timestamp).calendar(undefined, { - lastDay: '[Yesterday at] LT', - sameDay: '[Today at] LT', - nextDay: '[Tomorrow at] LT', - lastWeek: '[last] dddd [at] LT', - nextWeek: 'dddd [at] LT', sameElse: 'llll', });