diff --git a/resources/lib/widgets.py b/resources/lib/widgets.py index 5ee37e35..c4fb9bc4 100644 --- a/resources/lib/widgets.py +++ b/resources/lib/widgets.py @@ -464,10 +464,11 @@ def prepare_listitem(item): LOG.exception('Exception encountered: %s', exc) -def create_listitem(item, as_tuple=True, offscreen=True): +def create_listitem(item, as_tuple=True, offscreen=True, + listitem=xbmcgui.ListItem): """helper to create a kodi listitem from kodi compatible dict with mediainfo""" try: - liz = xbmcgui.ListItem( + liz = listitem( label=item.get("label", ""), label2=item.get("label2", ""), path=item['file'],