mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-08 09:27:45 +00:00
Fix the wrong server message being printed for login/patch
This commit is contained in:
parent
d6f3510494
commit
c6df4aff86
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue