mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-27 15:13:38 +00:00
Merge branch 'hotfix/3.32.11'
Some checks are pending
Python Unit Tests / windows (windows-latest, 3.10) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.11) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.12) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.8) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.9) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.10) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.11) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.12) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.8) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.9) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.10) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.11) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.12) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.8) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.9) (push) Waiting to run
Some checks are pending
Python Unit Tests / windows (windows-latest, 3.10) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.11) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.12) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.8) (push) Waiting to run
Python Unit Tests / windows (windows-latest, 3.9) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.10) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.11) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.12) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.8) (push) Waiting to run
Python Unit Tests / linux (ubuntu-latest, 3.9) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.10) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.11) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.12) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.8) (push) Waiting to run
Python Unit Tests / macos (macos-latest, 3.9) (push) Waiting to run
This commit is contained in:
commit
ca0bfd2ab1
2 changed files with 13 additions and 5 deletions
16
CHANGES.md
16
CHANGES.md
|
@ -1,8 +1,16 @@
|
||||||
### 3.33.0 (2024-0x-xx xx:xx:00 UTC)
|
### 3.32.11 (2024-11-26 20:15:00 UTC)
|
||||||
|
|
||||||
* Update filelock 3.14.0 (8556141) to 3.15.4 (9a979df)
|
* Fix nzbSplitter needs to use binary data for xml parser
|
||||||
* Update package resource API 68.2.2 (8ad627d) to 70.1.1 (222ebf9)
|
|
||||||
* Update urllib3 2.2.1 (54d6edf) to 2.2.2 (27e2a5c)
|
|
||||||
|
### 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)
|
||||||
|
|
|
@ -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