Skip to content

Commit 33b7838

Browse files
committed
fix(app): send clamped mic passthrough level to audio engine
1 parent 460c913 commit 33b7838

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ impl HonkHonk {
636636
}
637637
self.config = config;
638638
if let Some(ref audio) = self.audio {
639-
audio.send(AudioCommand::SetMicPassthroughLevel(v));
639+
audio.send(AudioCommand::SetMicPassthroughLevel(self.config.mic_passthrough_level));
640640
}
641641
Task::none()
642642
}

0 commit comments

Comments
 (0)