diff --git a/bot-rs/src/web/mod.rs b/bot-rs/src/web/mod.rs index 5c867a0..f9061ab 100644 --- a/bot-rs/src/web/mod.rs +++ b/bot-rs/src/web/mod.rs @@ -15,7 +15,7 @@ type DbPool = r2d2::Pool>; #[get("/")] async fn index() -> impl Responder { HttpResponse::TemporaryRedirect() - .header("LOCATION", "/standings/") + .header("LOCATION", "/standings") .finish() }