From 5778672dabfbed37fc9dbef94ca75570477dbbd7 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sat, 25 May 2024 18:41:17 -0700 Subject: [PATCH] Fix webserver restarting --- plexpy/webstart.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plexpy/webstart.py b/plexpy/webstart.py index b02e9ec1..62ab41ae 100644 --- a/plexpy/webstart.py +++ b/plexpy/webstart.py @@ -51,6 +51,7 @@ def start(): def stop(): logger.info("Tautulli WebStart :: Stopping Tautulli web server...") cherrypy.engine.exit() + cherrypy.server.httpserver = None def restart():