diff --git a/plugins/windows-notification/src/win_notification_provider.vala b/plugins/windows-notification/src/win_notification_provider.vala index 722bac1c..68651a55 100644 --- a/plugins/windows-notification/src/win_notification_provider.vala +++ b/plugins/windows-notification/src/win_notification_provider.vala @@ -14,7 +14,7 @@ namespace Dino.Plugins.WindowsNotification { private StreamInteractor stream_interactor; private Dino.Application app; - private Gee.List marked_for_removal; + private Gee.List marked_for_removal; // we must keep a reference to the notification itself or else their actions are disabled private HashMap notifications; @@ -26,8 +26,8 @@ namespace Dino.Plugins.WindowsNotification { this.notifier = notifier; this.stream_interactor = app.stream_interactor; this.app = app; - this.marked_for_removal = new Gee.ArrayList(); - this.content_notifications = new Gee.ArrayList(); + this.marked_for_removal = new Gee.ArrayList(); + this.content_notifications = new Gee.ArrayList(); this.conversation_notifications = new HashMap>(Conversation.hash_func, Conversation.equals_func); this.call_notifications = new HashMap(Call.hash_func, Call.equals_func); this.notifications = new HashMap();