mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge pull request #707 from kovaacs/fix-if-statement
fix misleading if statement
This commit is contained in:
commit
59559ee1bd
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ class Context(object):
|
||||||
'''
|
'''
|
||||||
options = []
|
options = []
|
||||||
|
|
||||||
if self.item['Type'] not in ('Season'):
|
if self.item['Type'] != 'Season':
|
||||||
|
|
||||||
if self.item['UserData'].get('IsFavorite'):
|
if self.item['UserData'].get('IsFavorite'):
|
||||||
options.append(OPTIONS['RemoveFav'])
|
options.append(OPTIONS['RemoveFav'])
|
||||||
|
|
Loading…
Reference in a new issue