Skip to content

Commit 94df8b4

Browse files
authored
fix(notifications): use correct reference for cacheKey
1 parent e9f6c09 commit 94df8b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/NotifData.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ QtObject {
7575
if (status !== Image.Ready || width != TokenConfig.sizes.notifs.image || height != TokenConfig.sizes.notifs.image)
7676
return;
7777

78-
const cacheKey = notif.appName + notif.summary + notif.id + notif.image;
78+
const cacheKey = notif.appName + notif.summary + notif.notificationId + notif.image;
7979
let h1 = 0xdeadbeef, h2 = 0x41c6ce57, ch;
8080
for (let i = 0; i < cacheKey.length; i++) {
8181
ch = cacheKey.charCodeAt(i);

0 commit comments

Comments
 (0)