Also exclude nitter when twitter posts are disallowed

main
Bob Mottram 2022-06-02 14:39:09 +01:00
parent d273936ccf
commit fba106842f
1 changed files with 3 additions and 1 deletions

View File

@ -100,7 +100,9 @@ def remove_global_filter(base_dir: str, words: str) -> bool:
def _is_twitter_post(content: str) -> bool:
"""Returns true if the given post content is a retweet or twitter crosspost
"""
if '/twitter.' in content or '@twitter.' in content:
if '/twitter.' in content or \
'/nitter.' in content or \
'@twitter.' in content:
return True
if '>RT <' in content:
return True