add padding

pull/164/head
Aevann 2023-06-30 23:32:36 +03:00
parent 6d23974d58
commit 243368c106
1 changed files with 4 additions and 2 deletions

View File

@ -633,8 +633,10 @@ def filter_emojis_only(title, golden=True, count_emojis=False, graceful=False, s
if strip:
title = title.strip()
if len(title) > POST_TITLE_HTML_LENGTH_LIMIT and not graceful: abort(400)
else: return title
if len(title) > POST_TITLE_HTML_LENGTH_LIMIT and not graceful:
abort(400)
else:
return title
def normalize_url(url):
url = reddit_domain_regex.sub(r'\1https://old.reddit.com/\3/', url)