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);
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_ObjectHaving done a little research, making the following change in extension.js fixes my issue and allows notifications to be sent.