From 87208684bcfee7d62eff39b5eee45a8b8574f324 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 24 May 2024 03:39:28 +0300 Subject: [PATCH] fix this https://rdrama.net/h/meta/post/271417/i-have-a-forbidden-notification-marseyraging/6450405#context --- files/classes/user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/classes/user.py b/files/classes/user.py index 8ca443475..1a5fef510 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -950,7 +950,7 @@ class User(Base): elif self.message_notifications_count > 0: return 'messages' elif self.chat_mentions_notifications_count > 0: - return 'chat_mentions' + return 'chats/' elif self.chats_notifications_count > 0: return 'chats' elif self.modmail_notifications_count > 0: @@ -969,7 +969,7 @@ class User(Base): colors = { '': '#dc3545', 'messages': '#d8910d', - 'chat_mentions': '#dd1ae0', + 'chats/': '#dd1ae0', 'chats': '#008080', 'modmail': '#f15387', 'posts': '#0000ff',