Allow virtual season artwork
This commit is contained in:
parent
bd093e6783
commit
e2a117ea97
1 changed files with 6 additions and 7 deletions
|
@ -1206,10 +1206,6 @@ class TVShows(Items):
|
|||
kodi_db = self.kodi_db
|
||||
artwork = self.artwork
|
||||
|
||||
if item['LocationType'] == "Virtual":
|
||||
self.logMsg("Skipping virtual season.")
|
||||
return
|
||||
|
||||
seasonnum = item.get('IndexNumber', 1)
|
||||
itemid = item['Id']
|
||||
|
||||
|
@ -1226,7 +1222,10 @@ class TVShows(Items):
|
|||
return
|
||||
|
||||
seasonid = kodi_db.addSeason(showid, seasonnum)
|
||||
|
||||
if item['LocationType'] != "Virtual":
|
||||
# Create the reference in emby table
|
||||
self.logMsg("Skipping virtual season.")
|
||||
emby_db.addReference(itemid, seasonid, "Season", "season", parentid=showid)
|
||||
|
||||
# Process artwork
|
||||
|
|
Loading…
Reference in a new issue