mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-28 23:53:37 +00:00
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
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:
commit
e2936c71b8
2 changed files with 16 additions and 1 deletions
15
CHANGES.md
15
CHANGES.md
|
@ -14,6 +14,21 @@
|
||||||
* Fix credits in Kodi episode nfo writer
|
* 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)
|
### 3.32.8 (2024-10-07 00:30:00 UTC)
|
||||||
|
|
||||||
* Change min required Python version to 3.9
|
* Change min required Python version to 3.9
|
||||||
|
|
|
@ -174,7 +174,7 @@ def split_result(result):
|
||||||
:return: list of search results
|
:return: list of search results
|
||||||
:rtype: List[sickgear.classes.SearchResult]
|
: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:
|
if None is resp:
|
||||||
logger.error(f'Unable to load url {result.url}, can\'t download season NZB')
|
logger.error(f'Unable to load url {result.url}, can\'t download season NZB')
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in a new issue