Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

Commit

Permalink
fix some boolean settings
Browse files Browse the repository at this point in the history
  • Loading branch information
hippojay committed May 5, 2015
1 parent 884082f commit b2c13d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/lib/plexbmc.py
Expand Up @@ -1334,7 +1334,7 @@ def monitorPlayback( id, server, playurl, session=None ):
if session:
printDebug.debug("We are monitoring a transcode session")

if settings.get_setting('monitoroff') == "true":
if settings.get_setting('monitoroff'):
return

playedTime = 0
Expand Down Expand Up @@ -1513,7 +1513,7 @@ def pluginTranscodeMonitor( sessionID, server ):
#Logic may appear backward, but this does allow for a failed start to be detected
#First while loop waiting for start

if settings.get_setting('monitoroff') == "true":
if settings.get_setting('monitoroff'):
return

count=0
Expand Down

0 comments on commit b2c13d5

Please sign in to comment.