forked from indymedia/epicyon
More generic twitter post detection
parent
cd014f66b6
commit
a896f5ad62
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue