From 41334ae3754171dcc0d454d021c5682c9603a705 Mon Sep 17 00:00:00 2001 From: Xjph Date: Sat, 23 Oct 2021 11:19:25 -0230 Subject: [PATCH] feat: wire up core methods for updating and cancelling notifications --- ObservatoryCore/PluginManagement/PluginCore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ObservatoryCore/PluginManagement/PluginCore.cs b/ObservatoryCore/PluginManagement/PluginCore.cs index cc4104e..ff63604 100644 --- a/ObservatoryCore/PluginManagement/PluginCore.cs +++ b/ObservatoryCore/PluginManagement/PluginCore.cs @@ -56,12 +56,12 @@ namespace Observatory.PluginManagement public void CancelNotification(Guid id) { - + NativePopup.CloseNotification(id); } public void UpdateNotification(Guid id, NotificationArgs notificationArgs) { - + NativePopup.UpdateNotification(id, notificationArgs); } ///