diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index 4be05ab4..b75312ee 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -215,12 +215,14 @@

Check for Tautulli updates periodically.

+ % if not plexpy.FROZEN:

Update Tautulli automatically if an update is available.

+ % endif
diff --git a/plexpy/versioncheck.py b/plexpy/versioncheck.py index 733e9d41..2ce94ad2 100644 --- a/plexpy/versioncheck.py +++ b/plexpy/versioncheck.py @@ -250,7 +250,7 @@ def check_github(scheduler=False, notify=False): 'plexpy_update_commit': plexpy.LATEST_VERSION, 'plexpy_update_behind': plexpy.COMMITS_BEHIND}) - if scheduler and plexpy.CONFIG.PLEXPY_AUTO_UPDATE and not plexpy.DOCKER: + if scheduler and plexpy.CONFIG.PLEXPY_AUTO_UPDATE and not plexpy.DOCKER and not plexpy.FROZEN: logger.info('Running automatic update.') plexpy.shutdown(restart=True, update=True)