remotes/1693045480750635534/spooky-22
Aevann1 2022-04-04 23:15:25 +02:00
parent ceaceffcd6
commit 4c2f7d5667
2 changed files with 8 additions and 5 deletions

View File

@ -261,7 +261,8 @@ def post_id(pid, anything=None, v=None, sub=None):
@limiter.limit("1/second;30/minute;200/hour;1000/day")
@auth_desired
def viewmore(v, pid, sort, offset):
pid = int(pid)
try: pid = int(pid)
except: abort(400)
post = get_post(pid, v=v)
if post.club and not (v and (v.paid_dues or v.id == post.author_id)): abort(403)

View File

@ -70,10 +70,12 @@ def api_flag_comment(cid, v):
@limiter.limit("1/second;30/minute;200/hour;1000/day")
@admin_level_required(2)
def remove_report_post(v, pid, uid):
pid = int(pid)
uid = int(uid)
try:
pid = int(pid)
uid = int(uid)
except: abort(400)
report = g.db.query(Flag).filter_by(post_id=pid, user_id=uid).one()
g.db.delete(report)