From 115413524d8af13ebb70e60a7667d328904f2ab2 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 7 Feb 2022 14:03:30 +0200 Subject: [PATCH] fsd --- files/routes/posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index 6ed595e0a..7846cf1f8 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -771,7 +771,7 @@ def thumbnail_thread(pid): for t in ("submission","comment"): for i in requests.get(f'https://api.pushshift.io/reddit/{t}/search?html_decode=true&q=pcmemes.net&size=1').json()["data"]: - body_html = sanitize(f'New pcmemes.net mention: https://old.reddit.com{i["permalink"]}?context=89', noimages=True) + body_html = sanitize(f'New pcmemes mention: https://old.reddit.com{i["permalink"]}?context=89', noimages=True) existing_comment = db.query(Comment.id).filter_by(author_id=NOTIFICATIONS_ID, parent_submission=None, distinguish_level=6, body_html=body_html, level=1, sentto=0).first()