Return False when word is not in text when checking blacklist

This commit is contained in:
2023-01-10 22:49:36 +01:00
parent d4c47aa729
commit 204f64049b

View File

@ -44,6 +44,7 @@ def has_black_tags(custom_reader: Reader, feed: Feed) -> bool:
if blacklist_title or blacklist_summary or blacklist_content:
return True
return False
def should_be_skipped(custom_reader: Reader, entry: Entry) -> bool: