Fix "Prefer Kodi Artwork" toggle doing the exact opposite
This commit is contained in:
parent
726addd117
commit
141234c8b8
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class Items(object):
|
||||||
setid = self.kodi_db.create_collection(setname)
|
setid = self.kodi_db.create_collection(setname)
|
||||||
external_set_artwork = api.set_artwork()
|
external_set_artwork = api.set_artwork()
|
||||||
if (external_set_artwork and
|
if (external_set_artwork and
|
||||||
utils.settings('PreferKodiCollectionArt') == 'false'):
|
utils.settings('PreferKodiCollectionArt') == 'true'):
|
||||||
# Need to make sure we are not overwriting existing Plex
|
# Need to make sure we are not overwriting existing Plex
|
||||||
# collection artwork
|
# collection artwork
|
||||||
plex_artwork = api.artwork(kodi_id=setid,
|
plex_artwork = api.artwork(kodi_id=setid,
|
||||||
|
|
Loading…
Reference in a new issue