From 46fce20771273328fbce02578b494eca452047d2 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Tue, 18 Aug 2026 15:38:58 -0400 Subject: [PATCH] Raise auto changed event --- AudioDevice.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AudioDevice.cs b/AudioDevice.cs index 106a33b..34fd530 100644 --- a/AudioDevice.cs +++ b/AudioDevice.cs @@ -44,6 +44,8 @@ internal class AudioDevice : IAudioSessionEventsHandler _logger.Information("AudioEndpointVolume_OnVolumeNotification: {name} {muted}", _friendlyName, data.Muted); IsMuted = data.Muted; + + AudioSessionsChanged?.Invoke(); } private void AudioSessionManager_OnSessionCreated(object sender, IAudioSessionControl newSession)