fix: better reliability for microphone state

This commit is contained in:
Ahmet Kaan Gümüş 2025-05-16 05:16:52 +03:00
parent 1e9808579a
commit d930888abb
3 changed files with 24 additions and 8 deletions

View file

@ -12,7 +12,7 @@ impl ClientConfig {
fn new() -> Self {
Self {
certificate_path: "./client/certificates/cert.pem".to_string(),
server_address: "localhost:4546".to_string(),
server_address: "127.0.0.1:4546".to_string(),
}
}
}