Fix TypeError
This commit is contained in:
parent
fa1dcdffaa
commit
6219ba6834
1 changed files with 1 additions and 1 deletions
|
@ -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():
|
||||||
|
|
Loading…
Reference in a new issue