From fa217c3b251b7d7e769a68ef5bfdfb476006db9c Mon Sep 17 00:00:00 2001 From: arabian Date: Sun, 7 Dec 2025 03:49:19 +0300 Subject: [PATCH] fix not working with mono input devices --- src/utils/pipewire.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/utils/pipewire.rs b/src/utils/pipewire.rs index da06cbe..881c294 100644 --- a/src/utils/pipewire.rs +++ b/src/utils/pipewire.rs @@ -164,6 +164,10 @@ pub async fn get_all_devices() -> Result<(Vec, Vec), B input_device.input_fl = Some(port.clone()); input_device.input_fr = Some(port) } + "capture_MONO" => { + input_device.input_fl = Some(port.clone()); + input_device.input_fr = Some(port); + } _ => {} } } else if output_devices.contains_key(&node_id) {