From 9ca8d59372519470f0e5f9892ef533fb7748af6d Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Mon, 23 Sep 2024 16:52:17 -0700 Subject: [PATCH] Fix auto-update not running --- plexpy/versioncheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/versioncheck.py b/plexpy/versioncheck.py index 2c161dd3..9f546594 100644 --- a/plexpy/versioncheck.py +++ b/plexpy/versioncheck.py @@ -281,7 +281,7 @@ def check_github(scheduler=False, notify=False, use_cache=False): 'plexpy_update_commit': plexpy.LATEST_VERSION, 'plexpy_update_behind': plexpy.COMMITS_BEHIND}) - elif scheduler and plexpy.CONFIG.PLEXPY_AUTO_UPDATE and \ + if scheduler and plexpy.CONFIG.PLEXPY_AUTO_UPDATE and \ not plexpy.DOCKER and not plexpy.SNAP and not plexpy.FROZEN: logger.info('Running automatic update.') plexpy.shutdown(restart=True, update=True)