Skip to content

Commit d7cd471

Browse files
committed
fix: using 0 for output should select default output
1 parent 611c23c commit d7cd471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/microphone.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn ask_sink_id() -> String {
3333

3434
let input = std::io::stdin().lines().next().unwrap().unwrap();
3535
match input.trim() {
36-
"0" => "none".to_string(),
36+
"0" => "".to_string(),
3737
i => i.to_string(),
3838
}
3939
}

0 commit comments

Comments
 (0)