From 560ee04159cfe8fcb981fc39540c146b3f39b4c2 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 23 Mar 2025 06:34:59 -0400 Subject: [PATCH] Update patch server for axum changes --- src/bin/kawari-patch.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/kawari-patch.rs b/src/bin/kawari-patch.rs index f89d4ef..92a6290 100644 --- a/src/bin/kawari-patch.rs +++ b/src/bin/kawari-patch.rs @@ -123,11 +123,11 @@ async fn main() { let app = Router::new() .route( - "/http/:platform/ffxivneo_release_game/:game_version/:sid", + "/http/{platform}/ffxivneo_release_game/{game_version}/{sid}", post(verify_session), ) .route( - "/http/:platform/ffxivneo_release_boot/*boot_version", + "/http/{platform}/ffxivneo_release_boot/{*boot_version}", get(verify_boot), ); // NOTE: for future programmers, this is a wildcard because axum hates the /version/?time=blah format.