diff --git a/files/routes/posts.py b/files/routes/posts.py index c5d780dbb..2b4e113eb 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -1218,7 +1218,7 @@ def submit_post(v, sub=None): for x in notify_users: add_notif(cid, x) - if request.values.get('followers') and v.followers: + if (request.values.get('followers') or is_bot) and v.followers: text = f"@{v.username} has made a new post: [{post.title}]({post.shortlink})" if post.sub: text += f" in /h/{post.sub}"