fix(Chat/FetchMessage): Fetch date is empty in new chats with no messages

Fixes #5726
This commit is contained in:
Noelia 2022-05-13 09:03:38 +02:00 committed by Noelia
parent 8eff1bdfd0
commit 3b86032bc8
1 changed files with 2 additions and 2 deletions

View File

@ -301,8 +301,8 @@ QtObject {
const formatDDMMYY = "dddd d MMMM yyyy"
const formatMMDDYY = "dddd, MMMM d, yyyy"
const currentFormat = isDDMMYYDateFormat ? formatDDMMYY : formatMMDDYY
return !!value ? Qt.formatDate(new Date(), currentFormat) :
Qt.formatDate(new Date(value), currentFormat)
return !value ? Qt.formatDate(new Date(), currentFormat) :
Qt.formatDate(new Date(value), currentFormat)
}
function formatLongDateTime(value, isDDMMYYDateFormat, is24hTimeFormat) {