Fix TypeErrors

This commit is contained in:
croneter 2018-11-26 07:56:27 +01:00
parent b0a68b255e
commit fa1dcdffaa

View file

@ -171,6 +171,7 @@ class KodiMonitor(xbmc.Monitor):
'resolve': False 'resolve': False
} }
task = backgroundthread.FunctionAsTask(playback.playback_triage, task = backgroundthread.FunctionAsTask(playback.playback_triage,
None,
**kwargs) **kwargs)
backgroundthread.BGThreader.addTasksToFront([task]) backgroundthread.BGThreader.addTasksToFront([task])
@ -482,7 +483,7 @@ def _record_playstate(status, ended):
xbmc.getCondVisibility('Window.IsVisible(Home.xml)')): xbmc.getCondVisibility('Window.IsVisible(Home.xml)')):
LOG.debug('Refreshing skin to update widgets') LOG.debug('Refreshing skin to update widgets')
xbmc.executebuiltin('ReloadSkin()') xbmc.executebuiltin('ReloadSkin()')
task = backgroundthread.FunctionAsTask(function=_clean_file_table) task = backgroundthread.FunctionAsTask(_clean_file_table, None)
backgroundthread.BGThreader.addTasksToFront(task) backgroundthread.BGThreader.addTasksToFront(task)