fix(ActivityCenterStore): Fix `switchTo` message is argument (#11639)

This commit is contained in:
Igor Sirotin 2023-07-22 20:20:06 +03:00 committed by GitHub
parent cc5f057b3a
commit 38672ffda6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ QtObject {
}
function switchTo(notification) {
root.activityCenterModuleInst.switchTo(notification.sectionId, notification.chatId, notification.id)
root.activityCenterModuleInst.switchTo(notification.sectionId, notification.chatId, notification.message.id)
}
function setActiveNotificationGroup(group) {
@ -96,4 +96,4 @@ QtObject {
function setActivityCenterReadType(readType) {
root.activityCenterModuleInst.setActivityCenterReadType(readType)
}
}
}