Skip to content

Commit 6048b83

Browse files
committed
fix(server): add port to local network addr
1 parent 2126b13 commit 6048b83

File tree

1 file changed

+1
-1
lines changed
  • crates/http-server/src/server

1 file changed

+1
-1
lines changed

crates/http-server/src/server/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Server {
4646

4747
if matches!(addr.ip(), IpAddr::V4(ALL_INTERFACES_IPV4)) {
4848
if let Ok(local_ip) = local_ip() {
49-
println!("Local Network on http://{}", local_ip);
49+
println!("Local Network on http://{}:{}", local_ip, self.config.port);
5050
}
5151
}
5252

0 commit comments

Comments
 (0)