Skip to content

Commit

Permalink
Update Missing column ordering
Browse files Browse the repository at this point in the history
Fix missing data in Sonarr. Currently episode name is stored in air time and vice versa.
  • Loading branch information
nicolerenee committed May 9, 2019
1 parent 21ad430 commit 88cb944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion varken/sonarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_calendar(self, query="Missing"):
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))

Expand Down

0 comments on commit 88cb944

Please sign in to comment.