Update Missing column ordering

Fix missing data in Sonarr. Currently episode name is stored in air time and vice versa.
This commit is contained in:
Nicole Hubbard 2019-05-09 00:21:17 -06:00 committed by Nicole Renée Hubbard
parent 9c863f8762
commit 0a7d18bb81

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))