mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix tuple prepend
This commit is contained in:
parent
2bade17e7f
commit
61fcfe3b5e
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ class FullSync(object):
|
|||
res = self.get_library(sync_id)
|
||||
if res is not None:
|
||||
# FIXME: This is a hack. Fix plz.
|
||||
libraries = [(sync_id,), res]
|
||||
libraries = [(sync_id,) + res]
|
||||
else:
|
||||
libraries = []
|
||||
|
||||
|
|
Loading…
Reference in a new issue