diff --git a/src/webserver/http.rs b/src/webserver/http.rs index 1b6249ea..7388695a 100644 --- a/src/webserver/http.rs +++ b/src/webserver/http.rs @@ -547,6 +547,8 @@ fn log_welcome_message(config: &AppConfig) { "http://localhost:{port}\n\ (also accessible from other devices using your IP address)" ) + } else if ip.is_ipv6() { + format!("http://[{ip}]:{port}") } else { format!("http://{ip}:{port}") }