mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-18 08:43:37 +00:00
Merge branch 'main' into dev
This commit is contained in:
commit
7f03b8dd02
2 changed files with 6 additions and 1 deletions
|
@ -5,6 +5,11 @@
|
||||||
* Change requirements for pure py3
|
* Change requirements for pure py3
|
||||||
|
|
||||||
|
|
||||||
|
### 3.27.7 (2023-02-18 22:40:00 UTC)
|
||||||
|
|
||||||
|
* Fix using recently updated torrent parser for py3 bytes
|
||||||
|
|
||||||
|
|
||||||
### 3.27.6 (2023-02-18 20:10:00 UTC)
|
### 3.27.6 (2023-02-18 20:10:00 UTC)
|
||||||
|
|
||||||
* Fix show view edit language
|
* Fix show view edit language
|
||||||
|
|
|
@ -787,7 +787,7 @@ def cache_torrent_file(
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import torrent_parser as tp
|
import torrent_parser as tp
|
||||||
torrent_meta = tp.decode(torrent_content, use_ordered_dict=True)
|
torrent_meta = tp.decode(torrent_content, use_ordered_dict=True, errors='usebytes')
|
||||||
except (BaseException, Exception):
|
except (BaseException, Exception):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue