notification: Stop using 'update()' from MessageTray.Notification

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3173>
This commit is contained in:
Julian Sparber
2024-02-14 12:27:23 +01:00
committed by Florian Müllner
parent b746ab05b3
commit cc60ce7f94
4 changed files with 14 additions and 10 deletions

View File

@ -218,7 +218,7 @@ export class ShellMountOperation {
if (!this._notification)
this._createNotification(title, body);
else
this._notification.update(title, body);
this._notification.set({title, body});
}
}