diff --git a/CHANGES.md b/CHANGES.md index ababaf89..aee3b8f2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/lib/rarfile/UnRAR.exe b/lib/rarfile/UnRAR.exe index 07676e9e..17aefa9d 100644 Binary files a/lib/rarfile/UnRAR.exe and b/lib/rarfile/UnRAR.exe differ diff --git a/sickgear/providers/filesharingtalk.py b/sickgear/providers/filesharingtalk.py index a2fa748c..d832bb60 100644 --- a/sickgear/providers/filesharingtalk.py +++ b/sickgear/providers/filesharingtalk.py @@ -146,6 +146,7 @@ class FSTProvider(generic.NZBProvider): raise generic.HaltParseException for tr in tbl_rows: + title = None try: if tr.find('img', class_=rc['cat']): title = tr['data-title'].strip()