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]