gnome-github-notifications
gnome-github-notifications copied to clipboard
Notifications not working on Ubuntu
Ubuntu Version: Ubuntu 22.04.1 LTS
Gnome Version: 42.5
When notifications are received, /var/log/syslog contains the following error:
[GITHUB NOTIFICATIONS EXTENSION][ERROR] Cannot notify Error: Expected type string for argument 'property_name' but got type GObject_Object
Having done a little research, making the following change in extension.js fixes my issue and allows notifications to be sent.
- this._source.notify(notification);
+ this._source.showNotification(notification);
To be clear, this is relating to desktop push notifications, IE the setting show notification alert
It seems #50 is designed to solve exactly this issue
#50 @alexduf will this be merged?