Fixed URL filtering
This commit is contained in:
parent
f42830dcd0
commit
8417385792
4
cloud.py
4
cloud.py
|
@ -51,7 +51,9 @@ if args.m is None:
|
||||||
|
|
||||||
def fetch_comments(comment) -> list:
|
def fetch_comments(comment) -> list:
|
||||||
if len(comment.replies) == 0:
|
if len(comment.replies) == 0:
|
||||||
return [re.sub(r'https?://\S+', '', comment.body)]
|
c = re.sub(r'https?://\S+', '', comment.body)
|
||||||
|
c = re.sub(r'http?://\S+', '', c)
|
||||||
|
return [c]
|
||||||
|
|
||||||
raw_comments = [comment.body]
|
raw_comments = [comment.body]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue