From d727c65c70df8a2530f2fc98aa4722a99f94d810 Mon Sep 17 00:00:00 2001 From: YuRaNnNzZZ Date: Wed, 18 Dec 2024 15:01:30 +0300 Subject: [PATCH] proper warning on input device missing --- Program.cs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Program.cs b/Program.cs index b02a7a4..5adce6c 100644 --- a/Program.cs +++ b/Program.cs @@ -44,9 +44,9 @@ namespace SwitchMicMonitorDevice MMDevice device = enumerator.GetDevice(micId); if (device == null) { - enumerator.Dispose(); + Console.WriteLine("Output device {0} not found", micId); - Console.WriteLine("Device {0} not found", micId); + enumerator.Dispose(); return; } @@ -63,7 +63,14 @@ namespace SwitchMicMonitorDevice string outDeviceId = args[1]; MMDevice dev2 = enumerator.GetDevice(outDeviceId); - if (dev2 == null) return; + if (dev2 == null) + { + Console.WriteLine("Input device {0} not found", outDeviceId); + + enumerator.Dispose(); + + return; + } store.SetValue(PROP_KEY_MONITORING_ENABLE, PROP_BOOL_ENABLE); store.Commit();