Update UnRar x64 for Windows 7.00 → 7.0.1

Fix FST provider exception raised when no title
This commit is contained in:
JackDandy 2024-05-25 09:31:35 +01:00
parent 2fe9e55e68
commit 386c066ed9
3 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,10 @@
### 3.30.19 (2024-05-17 23:40:00 UTC) ### 3.30.20 (2024-05-25 09:35:00 UTC)
* Fix FST provider exception raised when no title
* Update UnRar x64 for Windows 7.00 to 7.0.1
### 3.30.19 (2024-05-17 23:40:00 UTC)
* Fix exclude lxml versions 5.2.0 and 5.2.1 on non Windows because of CPU requirements creating core dump failure * Fix exclude lxml versions 5.2.0 and 5.2.1 on non Windows because of CPU requirements creating core dump failure

Binary file not shown.

View file

@ -146,6 +146,7 @@ class FSTProvider(generic.NZBProvider):
raise generic.HaltParseException raise generic.HaltParseException
for tr in tbl_rows: for tr in tbl_rows:
title = None
try: try:
if tr.find('img', class_=rc['cat']): if tr.find('img', class_=rc['cat']):
title = tr['data-title'].strip() title = tr['data-title'].strip()