From 96f77c16ba006955acede513c310f95cf8efa5e7 Mon Sep 17 00:00:00 2001 From: Eskil Queseth Date: Mon, 2 Nov 2020 22:13:59 +0100 Subject: fix minor oopsie --- mumctl/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mumctl') diff --git a/mumctl/src/main.rs b/mumctl/src/main.rs index 162616c..6513d6d 100644 --- a/mumctl/src/main.rs +++ b/mumctl/src/main.rs @@ -155,7 +155,7 @@ fn main() { } "audio.output_volume" => { if let Ok(volume) = value.parse() { - send_command(Command::InputVolumeSet(volume)).unwrap(); + send_command(Command::OutputVolumeSet(volume)).unwrap(); config.audio.output_volume = Some(volume); } } -- cgit v1.2.1