Fix Sonarr & Radarr V3 API /queue endpoint (#220)

This commit is contained in:
tigattack 2022-01-15 02:21:54 +00:00 committed by GitHub
parent 7a8c5a3ee4
commit 2607584eba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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