From 88cb94457c95f35ebc12a023fb0aa8f497bde8f7 Mon Sep 17 00:00:00 2001 From: Nicole Hubbard Date: Thu, 9 May 2019 00:21:17 -0600 Subject: [PATCH] Update Missing column ordering Fix missing data in Sonarr. Currently episode name is stored in air time and vice versa. --- varken/sonarr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varken/sonarr.py b/varken/sonarr.py index 426daf56..463b1ad2 100644 --- a/varken/sonarr.py +++ b/varken/sonarr.py @@ -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))