Need help with notifications in #postmarketos on a OnePlus6. Below #python excerpt gives audible, but no visible notification.
--
if mmscount > 0:
notification = Gio.Notification()
notification.set_title(f"{mmscount} MMS messages queued.")
notification.set_priority(Gio.NotificationPriority.HIGH)
self.send_notification(None, notification)
Lfb.init('XYZ')
event = Lfb.Event.new('message-new-sms')
event.trigger_feedback()
time.sleep(1)
--