Fix TypeError

This commit is contained in:
croneter 2018-11-26 07:58:12 +01:00
parent fa1dcdffaa
commit 6219ba6834

View file

@ -484,7 +484,7 @@ def _record_playstate(status, ended):
LOG.debug('Refreshing skin to update widgets') LOG.debug('Refreshing skin to update widgets')
xbmc.executebuiltin('ReloadSkin()') xbmc.executebuiltin('ReloadSkin()')
task = backgroundthread.FunctionAsTask(_clean_file_table, None) task = backgroundthread.FunctionAsTask(_clean_file_table, None)
backgroundthread.BGThreader.addTasksToFront(task) backgroundthread.BGThreader.addTasksToFront([task])
def _clean_file_table(): def _clean_file_table():