From 177707f6aee40253d3edab79b99accd6b692cbca Mon Sep 17 00:00:00 2001 From: F K <54195004+fredjk-gh@users.noreply.github.com> Date: Sat, 18 Dec 2021 13:46:57 -0500 Subject: [PATCH] Fix a couple of invalid thread exceptions in NativePopup notifications (#43) Manipulating active notifications must be done on the Avalonia UI thread. UpdateNotification and CloseNotification were not properly doing this. Any plugin attempting to use persistent notifications would have encountered these errors. NOTE: There is not yet hooks for cleaning up persistent/infinite timeout notifications when the APP is closed. --- ObservatoryCore/NativeNotification/NativePopup.cs | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/ObservatoryCore/NativeNotification/NativePopup.cs b/ObservatoryCore/NativeNotification/NativePopup.cs index 3e40f26..267f6e0 100644 --- a/ObservatoryCore/NativeNotification/NativePopup.cs +++ b/ObservatoryCore/NativeNotification/NativePopup.cs @@ -8,6 +8,7 @@ namespace Observatory.NativeNotification { public class NativePopup { + // TODO: This needs to be cleaned up when the app is closed. private Dictionary notifications; public NativePopup() @@ -48,13 +49,23 @@ namespace Observatory.NativeNotification public void CloseNotification(Guid guid) { if (notifications.ContainsKey(guid)) - notifications[guid].Close(); + { + Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() => + { + notifications[guid].Close(); + }); + } } public void UpdateNotification(Guid guid, NotificationArgs notificationArgs) { if (notifications.ContainsKey(guid)) - notifications[guid].DataContext = new NotificationViewModel(notificationArgs); + { + Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() => + { + notifications[guid].DataContext = new NotificationViewModel(notificationArgs); + }); + } } } }