reduce vu update frequency, report more sql errors, fix bug with startup show time

This commit is contained in:
2026-06-10 00:23:13 +02:00
parent b1453b3fbc
commit 5aa2631b99
3 changed files with 11 additions and 3 deletions
+1
View File
@@ -148,6 +148,7 @@ pub async fn start_audio_input() -> (AudioInputControl, MicStream, TtsOutStream)
volume_sink.send_if_modified(|v| {
let next_vu = meter.channel_vu(0).unwrap();
let next_vu = (next_vu * 100.0).round() / 100.0;
if *v != next_vu {
*v = next_vu;
true