From 8417385792c679545fbc05508d023ff70aa3e8f9 Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 12 Jul 2020 18:46:28 +0200 Subject: [PATCH] Fixed URL filtering --- cloud.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cloud.py b/cloud.py index 3e5b640..6c40bbe 100644 --- a/cloud.py +++ b/cloud.py @@ -51,7 +51,9 @@ if args.m is None: def fetch_comments(comment) -> list: 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]