diff --git a/files/routes/comments.py b/files/routes/comments.py index 5cea8efeb..4f708b95f 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -387,9 +387,6 @@ def comment(v): @limiter.limit(DELETE_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID) @auth_required def delete_comment(cid, v): - if SITE == 'rdrama.net' and v.id == 253: - abort(403) - c = get_comment(cid, v=v) if not c.deleted_utc: if c.author_id != v.id: abort(403) diff --git a/files/routes/posts.py b/files/routes/posts.py index 88318a2e2..b84e1f40b 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -481,7 +481,7 @@ def submit_post(v, hole=None): hole = request.values.get("hole", "").lower().replace('/h/','').strip() - if SITE == 'rdrama.net' and (v.chud == 1 or v.id == 253): + if SITE == 'rdrama.net' and v.chud == 1: hole = 'chudrama' if SITE == 'rdrama.net' and v.id in {4358, 18286}: diff --git a/files/routes/settings.py b/files/routes/settings.py index cf1c16a9f..51b3f974e 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -93,8 +93,6 @@ def notify_removed_users(removed_users, kind): @limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID) @auth_required def settings_personal_post(v): - if v.id == 253 and request.values.get("private"): - abort(403) updated = False # begin common selectors #