check lowercase snappy quotes

pull/199/head
Aevann 2023-09-15 13:49:17 +03:00
parent 96f20d0c2c
commit ce62364262
1 changed files with 2 additions and 2 deletions

View File

@ -248,8 +248,8 @@ def comment(v):
if v.admin_level >= PERMS['USE_ADMIGGER_THREADS'] and posting_to_post and post_target.id == SNAPPY_THREAD and level == 1:
with open(f"snappy_{SITE_NAME}.txt", "r+") as f:
body_for_checking = '\n{[para]}\n' + body + '\n{[para]}\n'
if body_for_checking in f.read():
body_for_checking = '\n{[para]}\n' + body.lower() + '\n{[para]}\n'
if body_for_checking in f.read().lower():
abort(400, "Snappy quote already exists!")
f.write('{[para]}\n' + body + '\n')