From b367b475b917fd2c6f3d91d5fb0e17499603e5e4 Mon Sep 17 00:00:00 2001 From: Robert Lv Date: Tue, 3 Dec 2024 16:35:27 +0800 Subject: [PATCH] fix: Did not disappear after the deadline No status change signal was sent when the time was up pms: BUG-290623 --- panels/notification/server/notificationmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/notification/server/notificationmanager.cpp b/panels/notification/server/notificationmanager.cpp index d1c6ee439..04f99cfee 100644 --- a/panels/notification/server/notificationmanager.cpp +++ b/panels/notification/server/notificationmanager.cpp @@ -411,8 +411,8 @@ void NotificationManager::updateEntityProcessed(const NotifyEntity &entity) m_persistence->removeEntity(id); } else { m_persistence->updateEntityProcessedType(id, entity.processedType()); - Q_EMIT NotificationStateChanged(id, entity.processedType()); } + Q_EMIT NotificationStateChanged(id, entity.processedType()); emitRecordCountChanged(); }