From 5b0427c21cb3db8397f2399ec1233417033fa620 Mon Sep 17 00:00:00 2001 From: salty Date: Sat, 5 Jun 2021 19:34:56 +0200 Subject: [PATCH] Fixed fetching radarr V3 qualityprofile --- media/pvr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/pvr.py b/media/pvr.py index bedce25..e0ef81e 100644 --- a/media/pvr.py +++ b/media/pvr.py @@ -72,7 +72,7 @@ class PVR(ABC): try: # make request req = requests.get( - os.path.join(misc_str.ensure_endswith(self.server_url, "/"), 'api/v3/profile'), + os.path.join(misc_str.ensure_endswith(self.server_url, "/"), 'api/v3/qualityProfile'), headers=self.headers, timeout=60, allow_redirects=False