From 1f4547a74c0baf40d601d453e0c29a4c24d8da94 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 18 Mar 2024 20:36:18 -0700 Subject: [PATCH] redirect with trailing slash --- src/ptouch_web/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ptouch_web/api.py b/src/ptouch_web/api.py index 8b56a6a..15aaf62 100644 --- a/src/ptouch_web/api.py +++ b/src/ptouch_web/api.py @@ -104,7 +104,7 @@ label_queue = dict() @app.get("/") async def redirect_dash(): "Redirect to the web application" - return RedirectResponse("/app") + return RedirectResponse("/app/") @app.get("/v1/queue", response_model=list[Union[QueueText, QueueImage]]) -- 2.39.5