Skip to content

Commit

Permalink
Merge pull request #323 from CyanNyan/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Ynng committed Aug 2, 2023
2 parents ca9f80e + dc996ec commit e16ee2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ pub async fn run(
debug!("Port {port} is already in use, trying next port");
port += 1;
}
let addr = SocketAddr::from(([0, 0, 0, 0], port));
let addr = SocketAddr::from(([0, 0, 0, 0, 0, 0, 0, 0], port));
let axum_server_handle = axum_server::Handle::new();
tokio::spawn({
let axum_server_handle = axum_server_handle.clone();
Expand Down

0 comments on commit e16ee2d

Please sign in to comment.