mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge pull request #237 from mcarlton00/boxsets-fix
Fix capitalization in boxsets
This commit is contained in:
commit
011186edd7
1 changed files with 1 additions and 1 deletions
|
@ -618,7 +618,7 @@ class UpdateWorker(threading.Thread):
|
|||
default_args = (self.server, jellyfindb, kodidb, self.direct_path)
|
||||
if item['Type'] == 'Movie':
|
||||
obj = Movies(*default_args).movie
|
||||
elif item['Type'] == 'Boxset':
|
||||
elif item['Type'] == 'BoxSet':
|
||||
obj = Movies(*default_args).boxset
|
||||
elif item['Type'] == 'Series':
|
||||
obj = TVShows(*default_args).tvshow
|
||||
|
|
Loading…
Reference in a new issue