From 2607584eba4ac994092357dee3f8c2eb470885e8 Mon Sep 17 00:00:00 2001 From: tigattack <10629864+tigattack@users.noreply.github.com> Date: Sat, 15 Jan 2022 02:21:54 +0000 Subject: [PATCH] Fix Sonarr & Radarr V3 API /queue endpoint (#220) --- varken/structures.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/varken/structures.py b/varken/structures.py index e79046c..30f4d9d 100644 --- a/varken/structures.py +++ b/varken/structures.py @@ -247,6 +247,8 @@ class SonarrQueue(NamedTuple): trackedDownloadState: str = None trackedDownloadStatus: str = None seriesId: int = None + errorMessage: str = None + outputPath: str = None # Radarr @@ -308,6 +310,10 @@ class RadarrQueue(NamedTuple): title: str = None trackedDownloadState: str = None trackedDownloadStatus: str = None + timeleft: str = None + estimatedCompletionTime: str = None + errorMessage: str = None + outputPath: str = None # Sickchill