1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-06-08 17:37:46 +00:00

Fix the wrong server message being printed for login/patch

This commit is contained in:
Joshua Goins 2024-05-11 12:21:35 -04:00
parent d6f3510494
commit c6df4aff86
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ async fn main() {
.route("/oauth/ffxivarr/login/login.send", post(login_send));
let addr = SocketAddr::from(([127, 0, 0, 1], 6700));
tracing::info!("Frontier server started on {}", addr);
tracing::info!("Login server started on {}", addr);
axum::Server::bind(&addr)
.serve(app.into_make_service())
.await

View file

@ -32,7 +32,7 @@ async fn main() {
.route("/http/win32/ffxivneo_release_boot/:boot_version", get(verify_boot));
let addr = SocketAddr::from(([127, 0, 0, 1], 6900));
tracing::info!("Frontier server started on {}", addr);
tracing::info!("Patch server started on {}", addr);
axum::Server::bind(&addr)
.serve(app.into_make_service())
.await