Skip to content

Commit

Permalink
Merge pull request #133 from nicolerenee/fixColumnOrdering
Browse files Browse the repository at this point in the history
Sonarr Missing episodes column ordering is incorrect
  • Loading branch information
dirtycajunrice authored May 9, 2019
2 parents 21ad430 + 88cb944 commit 775e86c
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 775e86c

Please sign in to comment.