mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-18 08:43:37 +00:00
Merge branch 'hotfix/3.27.7'
This commit is contained in:
commit
21d4e60941
2 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,9 @@
|
|||
### 3.27.6 (2023-02-18 20:10:00 UTC)
|
||||
### 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)
|
||||
|
||||
* Fix show view edit language
|
||||
* Fix TVDb image parsing
|
||||
|
|
|
@ -789,7 +789,7 @@ def cache_torrent_file(
|
|||
|
||||
try:
|
||||
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):
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue