From 0a7d18bb8142c8d5645b3e2ccb8f796835c6ea88 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 426daf5..463b1ad 100644 --- a/varken/sonarr.py +++ b/varken/sonarr.py @@ -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))