mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
fix if statement
('Season') is just a string in parentheses, not a tuple
This commit is contained in:
parent
0a7faff2b9
commit
3797ee228a
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ class Context(object):
|
|||
'''
|
||||
options = []
|
||||
|
||||
if self.item['Type'] not in ('Season'):
|
||||
if self.item['Type'] != 'Season':
|
||||
|
||||
if self.item['UserData'].get('IsFavorite'):
|
||||
options.append(OPTIONS['RemoveFav'])
|
||||
|
|
Loading…
Reference in a new issue