diff options
author | fiaxh <git@lightrise.org> | 2020-12-01 21:53:56 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-12-01 21:54:42 +0100 |
commit | cd7c4c82211321ea25b388ea4eb42ee810b25e5f (patch) | |
tree | f3d4d0507d9f6bf43c3dc3afdf558761f9912b4f /main/src/ui/application.vala | |
parent | 552591640fa207f6563f10282217f37161a10043 (diff) | |
download | dino-cd7c4c82211321ea25b388ea4eb42ee810b25e5f.tar.gz dino-cd7c4c82211321ea25b388ea4eb42ee810b25e5f.zip |
Fix notification fallback, fix fdo markup escaping
Diffstat (limited to 'main/src/ui/application.vala')
-rw-r--r-- | main/src/ui/application.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/application.vala b/main/src/ui/application.vala index 17abddbc..008b15c7 100644 --- a/main/src/ui/application.vala +++ b/main/src/ui/application.vala @@ -29,7 +29,7 @@ public class Dino.Ui.Application : Gtk.Application, Dino.Application { startup.connect(() => { stream_interactor.get_module(NotificationEvents.IDENTITY).register_notification_provider(new GNotificationsNotifier(stream_interactor)); - FreeDesktopNotifier free_desktop_notifier = FreeDesktopNotifier.try_create(stream_interactor); + FreeDesktopNotifier? free_desktop_notifier = FreeDesktopNotifier.try_create(stream_interactor); if (free_desktop_notifier != null) { stream_interactor.get_module(NotificationEvents.IDENTITY).register_notification_provider(free_desktop_notifier); } |