Merge pull request #133 from nicolerenee/fixColumnOrdering

Sonarr Missing episodes column ordering is incorrect
This commit is contained in:
Nicholas St. Germain 2019-05-09 14:45:58 -05:00 committed by GitHub
commit e0909f22ce

View file

@ -55,7 +55,7 @@ class SonarrAPI(object):
downloaded = 0
if query == "Missing":
if not downloaded:
missing.append((show.series['title'], downloaded, sxe, show.airDateUtc, show.title, show.id))
missing.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id))
else:
air_days.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id))