diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index 1b5dd45ea..761973ef1 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -267,7 +267,7 @@ export default { const msgs = [] ;[...this.messages, ...Message].forEach((m) => { - m.seen = true + if (m.senderId !== this.currentUser.id) m.seen = true m.date = new Date(m.date).toDateString() msgs[m.indexId] = m })