Skip to content

Commit

Permalink
fix: Don't use removed bannerBodyText property
Browse files Browse the repository at this point in the history
  • Loading branch information
DaPigGuy authored and daniellandau committed Apr 2, 2024
1 parent ebb0e61 commit 9d27463
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/shell/notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,10 @@ const Source = GObject.registerClass({
: null;

if (cachedNotification.title === title &&
cachedNotification.bannerBodyText === body)
cachedNotification.body === body)
return cachedNotification;

cachedNotification.title = title;
cachedNotification.bannerBodyText = body;
cachedNotification.body = body;

return cachedNotification;
Expand Down

0 comments on commit 9d27463

Please sign in to comment.