From 76954c162ad583ca65362426bfba142d1e8acdcd Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 21 Jan 2026 12:27:00 +0100 Subject: [PATCH] NotificationsManager: Improve some comments (as suggested by CLion) --- src/app/notificationsmanager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/notificationsmanager.cpp b/src/app/notificationsmanager.cpp index 11bf75ea1..73ceb73d3 100644 --- a/src/app/notificationsmanager.cpp +++ b/src/app/notificationsmanager.cpp @@ -170,16 +170,16 @@ bool NotificationsManager::shouldPostNotification(const QPointerid() == RoomManager::instance().currentRoom()->id() && QGuiApplication::applicationState() == Qt::ApplicationActive) { return false; } - // If the notification timestamp is earlier than the initial timestamp assume + // If the notification timestamp is earlier than the initial timestamp, assume // the notification is old and shouldn't be posted. const auto timestamp = notification["ts"_L1].toDouble(); if (timestamp < m_initialTimestamp[connection->user()->id()]) {