From 6f6541fdb8a4243e110356caceb99e43d95064f4 Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 23 Sep 2015 22:57:35 +0200 Subject: [PATCH] Start the scheduler after first run wizard. --- plexpy/webserve.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plexpy/webserve.py b/plexpy/webserve.py index f9ee45fd..519577c7 100644 --- a/plexpy/webserve.py +++ b/plexpy/webserve.py @@ -99,6 +99,7 @@ class WebInterface(object): # The setup wizard just refreshes the page on submit so we must redirect to home if config set. # Also redirecting to home if a PMS token already exists - will remove this in future. if plexpy.CONFIG.FIRST_RUN_COMPLETE or plexpy.CONFIG.PMS_TOKEN: + plexpy.initialize_scheduler() raise cherrypy.HTTPRedirect("home") else: return serve_template(templatename="welcome.html", title="Welcome", config=config)