Merge pull request #3978 from thelounge/xpaw/fix-date-marker

Fix date marker not displaying sometimes
This commit is contained in:
Richard Lewis 2020-07-08 14:59:42 +03:00 committed by GitHub
commit fae9d75d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -204,7 +204,14 @@ export default {
return true;
}
return new Date(previousMessage.time).getDay() !== new Date(message.time).getDay();
const oldDate = new Date(previousMessage.time);
const newDate = new Date(message.time);
return (
oldDate.getDate() !== newDate.getDate() ||
oldDate.getMonth() !== newDate.getMonth() ||
oldDate.getFullYear() !== newDate.getFullYear()
);
},
shouldDisplayUnreadMarker(id) {
if (!unreadMarkerShown && id > this.channel.firstUnread) {