Skip to content

Commit

Permalink
🐛 Fix some separator joining
Browse files Browse the repository at this point in the history
  • Loading branch information
jurialmunkey committed Sep 11, 2023
1 parent 99e4f9a commit daa2768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/method.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def _get_exec_str() -> str:
return f'SetProperty({{}},{{}},{window_id})'
return 'SetProperty({},{})'

xbmc.executebuiltin(_get_exec_str().format(add_skinstring_history, values[0]))
xbmc.executebuiltin(_get_exec_str().format(add_skinstring_history, separator.join(filter(None, values))))


def set_dbid_tag(set_dbid_tag, dbtype, dbid, **kwargs):
Expand Down

0 comments on commit daa2768

Please sign in to comment.