Merge branch 'main' into dev
Some checks failed
Python Unit Tests / windows (windows-latest, 3.10) (push) Has been cancelled
Python Unit Tests / windows (windows-latest, 3.11) (push) Has been cancelled
Python Unit Tests / windows (windows-latest, 3.12) (push) Has been cancelled
Python Unit Tests / windows (windows-latest, 3.8) (push) Has been cancelled
Python Unit Tests / windows (windows-latest, 3.9) (push) Has been cancelled
Python Unit Tests / linux (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unit Tests / linux (ubuntu-latest, 3.11) (push) Has been cancelled
Python Unit Tests / linux (ubuntu-latest, 3.12) (push) Has been cancelled
Python Unit Tests / linux (ubuntu-latest, 3.8) (push) Has been cancelled
Python Unit Tests / linux (ubuntu-latest, 3.9) (push) Has been cancelled
Python Unit Tests / macos (macos-latest, 3.10) (push) Has been cancelled
Python Unit Tests / macos (macos-latest, 3.11) (push) Has been cancelled
Python Unit Tests / macos (macos-latest, 3.12) (push) Has been cancelled
Python Unit Tests / macos (macos-latest, 3.8) (push) Has been cancelled
Python Unit Tests / macos (macos-latest, 3.9) (push) Has been cancelled

This commit is contained in:
JackDandy 2024-11-26 20:24:12 +00:00
commit e2936c71b8
2 changed files with 16 additions and 1 deletions

View file

@ -14,6 +14,21 @@
* Fix credits in Kodi episode nfo writer
### 3.32.11 (2024-11-26 20:15:00 UTC)
* Fix nzbSplitter needs to use binary data for xml parser
### 3.32.10 (2024-10-07 01:10:00 UTC)
* Fix IndentationError, pt2/2
### 3.32.9 (2024-10-07 01:00:00 UTC)
* Fix IndentationError, pt1/2
### 3.32.8 (2024-10-07 00:30:00 UTC)
* Change min required Python version to 3.9

View file

@ -174,7 +174,7 @@ def split_result(result):
:return: list of search results
:rtype: List[sickgear.classes.SearchResult]
"""
resp = helpers.get_url(result.url, failure_monitor=False)
resp = helpers.get_url(result.url, failure_monitor=False, as_binary=True)
if None is resp:
logger.error(f'Unable to load url {result.url}, can\'t download season NZB')
return False