Skip to content

Commit

Permalink
closes #77
Browse files Browse the repository at this point in the history
  • Loading branch information
robweber committed Dec 5, 2024
1 parent f9910ae commit fc4249c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def evalSchedules(self, manual=False):
if(not player.isPlaying() or utils.getSetting("run_during_playback") == "true"):

# check if run on idle is checked and screen is idle - disable this on manual run
if(not utils.getSettingBool('run_on_idle') or (utils.getSettingBool('run_on_idle') and (self.monitor.screensaver_running or manual))):
if(manual or not utils.getSettingBool('run_on_idle') or (utils.getSettingBool('run_on_idle') and self.monitor.screensaver_running)):

# check for valid network connection - check sources if setting enabled
if(self._networkUp() and (not utils.getSettingBool('check_sources') or (utils.getSettingBool('check_sources') and self._checkSources(cronJob)))):
Expand Down

0 comments on commit fc4249c

Please sign in to comment.