Return False when word is not in text when checking blacklist
This commit is contained in:
parent
d4c47aa729
commit
204f64049b
1 changed files with 1 additions and 0 deletions
|
|
@ -44,6 +44,7 @@ def has_black_tags(custom_reader: Reader, feed: Feed) -> bool:
|
||||||
|
|
||||||
if blacklist_title or blacklist_summary or blacklist_content:
|
if blacklist_title or blacklist_summary or blacklist_content:
|
||||||
return True
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def should_be_skipped(custom_reader: Reader, entry: Entry) -> bool:
|
def should_be_skipped(custom_reader: Reader, entry: Entry) -> bool:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue