More generic twitter post detection

main
Bob Mottram 2020-02-05 16:56:45 +00:00
parent cd014f66b6
commit a896f5ad62
1 changed files with 2 additions and 2 deletions

View File

@ -41,9 +41,9 @@ def removeFilter(baseDir: str,nickname: str,domain: str, \
def isTwitterPost(content: str) -> bool: def isTwitterPost(content: str) -> bool:
"""Returns true if the given post content is a retweet or twitter crosspost """Returns true if the given post content is a retweet or twitter crosspost
""" """
if '/twitter.com' in content or '@twitter.' in content: if '/twitter.' in content or '@twitter.' in content:
return True return True
elif 'RT:' in content: elif '>RT <' in content:
return True return True
return False return False