Merge pull request #237 from mcarlton00/boxsets-fix

Fix capitalization in boxsets
This commit is contained in:
Abby 2020-03-20 22:53:58 +00:00 committed by GitHub
commit 011186edd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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