Remove auto reset detection

Will review at a later time
This commit is contained in:
angelblue05 2016-02-26 22:30:56 -06:00
parent 03ac28272e
commit c4e936e985

View file

@ -45,7 +45,9 @@ class KodiMonitor(xbmc.Monitor):
def onSettingsChanged(self): def onSettingsChanged(self):
# Monitor emby settings # Monitor emby settings
currentPath = utils.settings('useDirectPaths') # Review reset setting at a later time, need to be adjusted to account for initial setup
# changes.
'''currentPath = utils.settings('useDirectPaths')
if utils.window('emby_pluginpath') != currentPath: if utils.window('emby_pluginpath') != currentPath:
# Plugin path value changed. Offer to reset # Plugin path value changed. Offer to reset
self.logMsg("Changed to playback mode detected", 1) self.logMsg("Changed to playback mode detected", 1)
@ -57,7 +59,7 @@ class KodiMonitor(xbmc.Monitor):
"needs to be recreated for the change to be applied. " "needs to be recreated for the change to be applied. "
"Proceed?")) "Proceed?"))
if resp: if resp:
utils.reset() utils.reset()'''
currentLog = utils.settings('logLevel') currentLog = utils.settings('logLevel')
if utils.window('emby_logLevel') != currentLog: if utils.window('emby_logLevel') != currentLog: