From c6cabd724c441b7dd3cb62908217a484c3c1ee94 Mon Sep 17 00:00:00 2001 From: F K <54195004+fredjk-gh@users.noreply.github.com> Date: Tue, 23 Jan 2024 19:34:49 -0500 Subject: [PATCH] [Herald] Force Herald to act as NativeVocal notification target (#132) This makes Herald, a plugin ONLY react to NativeVocal notifications so notifications can be sent silently by using `Rendering = NotificationRendering.PluginNotifier` on NotificationArgs. These notifications will be picked up by other notification listeners (eg. Aggregator). --- ObservatoryHerald/HeraldNotifier.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObservatoryHerald/HeraldNotifier.cs b/ObservatoryHerald/HeraldNotifier.cs index a66fa28..064e1ac 100644 --- a/ObservatoryHerald/HeraldNotifier.cs +++ b/ObservatoryHerald/HeraldNotifier.cs @@ -77,7 +77,7 @@ namespace Observatory.Herald public void OnNotificationEvent(NotificationArgs notificationEventArgs) { - if (heraldSettings.Enabled) + if (heraldSettings.Enabled && notificationEventArgs.Rendering.HasFlag(NotificationRendering.NativeVocal)) heraldSpeech.Enqueue( notificationEventArgs, GetAzureNameFromSetting(heraldSettings.SelectedVoice),