notificationDaemon: Use correct property name to enable markup

The property is named useBodyMarkup, not bannerMarkup. This was causing
markup to be disabled for FDO notifications.

Fixes: cc60ce7f94 ("notification: Stop using 'update()' from MessageTray.Notification")
Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7495
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3247>
This commit is contained in:
Sebastian Keller 2024-03-19 12:47:50 +01:00
parent 0ff4501b40
commit 7f476e051c

View File

@ -204,7 +204,7 @@ class FdoNotificationDaemon {
title: summary, title: summary,
body, body,
gicon, gicon,
bannerMarkup: true, useBodyMarkup: true,
sound: new MessageTray.Sound(soundFile, hints['sound-name']), sound: new MessageTray.Sound(soundFile, hints['sound-name']),
acknowledged: false, acknowledged: false,
}); });