diff --git a/files/helpers/sanitize.py b/files/helpers/sanitize.py index d631821d9..10b05f7b8 100644 --- a/files/helpers/sanitize.py +++ b/files/helpers/sanitize.py @@ -379,7 +379,7 @@ def sanitize(sanitized, golden=True, limit_pings=0, showmore=False, count_emojis names = set(m.group(1) for m in mention_regex.finditer(sanitized)) if limit_pings and len(names) > limit_pings and author and author.admin_level < PERMS['POST_COMMENT_INFINITE_PINGS']: - return stop(400, "Max ping limit is 5 for comments and 50 for posts!") + return stop(400, "Max ping limit is 10 for comments and 50 for posts!") users_list = get_users(names, graceful=True) users_dict = {}