From 47afe06c2cbb827244d620086f32a190c9d27aa7 Mon Sep 17 00:00:00 2001 From: TropiiDev Date: Sat, 26 Apr 2025 22:59:36 -0400 Subject: [PATCH] bug fix with trailing slash v0.0.5 --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.py b/api.py index fdccf36..4db9568 100644 --- a/api.py +++ b/api.py @@ -8,7 +8,7 @@ from sql import * from tables import * # fastapi init -app = FastAPI(lifespan=lifespan) +app = FastAPI(lifespan=lifespan, redirect_slashes=False) app.add_middleware( CORSMiddleware,