From 0258fe5ea990700f60fbb0194e893ca458a0d85f Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Tue, 9 Sep 2025 17:59:36 +0200 Subject: [PATCH] fix: Remove unread messages notification This is unnecessarily spamming the view when the chat tab is closed. Also, this is kind of a duplicate with the blue dot on the message icon. Signed-off-by: Louis --- src/components/RightSidebar/RightSidebar.vue | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/components/RightSidebar/RightSidebar.vue b/src/components/RightSidebar/RightSidebar.vue index ed7c1eb571c..ddf7037f855 100644 --- a/src/components/RightSidebar/RightSidebar.vue +++ b/src/components/RightSidebar/RightSidebar.vue @@ -427,17 +427,6 @@ export default { }, }, - unreadMessagesCounter(newValue, oldValue) { - if (!this.isInCall || this.opened) { - return - } - - // new messages arrived - if (newValue > 0 && oldValue === 0 && !this.hasUnreadMentions) { - this.notifyUnreadMessages(t('spreed', 'You have new unread messages in the chat.')) - } - }, - hasUnreadMentions(newValue) { if (!this.isInCall || this.opened) { return