From 53532ce9b8aa6854976b51f4fcd9cb4c23914eee Mon Sep 17 00:00:00 2001 From: westsurname <155189104+westsurname@users.noreply.github.com> Date: Wed, 7 Aug 2024 19:45:04 -0400 Subject: [PATCH] Set plex auth strict slashes to false --- plex_authentication.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plex_authentication.py b/plex_authentication.py index c25cf7a..9dd317e 100644 --- a/plex_authentication.py +++ b/plex_authentication.py @@ -11,6 +11,7 @@ # instantiate the app app = Flask(__name__) app.config.from_object(__name__) +app.url_map.strict_slashes = False @app.route('/', methods=['GET'])