From d112f6769e73e5c4ae3185a6bd7be513c132154b Mon Sep 17 00:00:00 2001 From: zhaoyingzhen Date: Wed, 20 Nov 2024 17:22:57 +0800 Subject: [PATCH] fix: ActionInvoked returned wrong id as title Log: ActionInvoked returned wrong id Bug: https://pms.uniontech.com/bug-view-283561.html --- panels/notification/common/dbaccessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/notification/common/dbaccessor.cpp b/panels/notification/common/dbaccessor.cpp index 25d73b747..5703702d9 100644 --- a/panels/notification/common/dbaccessor.cpp +++ b/panels/notification/common/dbaccessor.cpp @@ -565,7 +565,7 @@ NotifyEntity DBAccessor::parseEntity(const QSqlQuery &query) entity.setHintString(hint); entity.setActionString(action); entity.setProcessedType(processedType); - entity.setBubbleId(id); + entity.setBubbleId(notifyId); entity.setReplacesId(replacesId); return entity;