diff --git a/CHANGES.md b/CHANGES.md index 27c06d7..8236193 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,9 @@ -### 0.21.40 (2020-07-20 22:00:00 UTC) +### 0.21.41 (2020-07-31 09:25:00 UTC) + +* Update NZBGet extension 2.5 to 2.6 + + +### 0.21.40 (2020-07-20 22:00:00 UTC) * Change allow Python 3.8.5 diff --git a/autoProcessTV/SickGear-NG/SickGear-NG.py b/autoProcessTV/SickGear-NG/SickGear-NG.py index 9fec2dc..2370bf6 100755 --- a/autoProcessTV/SickGear-NG/SickGear-NG.py +++ b/autoProcessTV/SickGear-NG/SickGear-NG.py @@ -51,7 +51,7 @@ # Send "Process Media" requests to SickGear # -# Process Media extension version: 2.5. +# Process Media extension version: 2.6. # @@ -573,7 +573,7 @@ def call_nzbget_direct(url_command): except requests.RequestException: return '' - return response.content if response.ok else '' + return response.text if response.ok else '' # noinspection DuplicatedCode