diff --git a/files/routes/admin.py b/files/routes/admin.py index 8f8bd06cd..b85135058 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -1251,7 +1251,7 @@ def unsticky_post(post_id, v): post = get_post(post_id) if post.stickied: if post.stickied.endswith('(pin award)'): abort(403, "Can't unpin award pins!") - if post.author_id == LAWLZ_ID: abort(403, "Can't unpin lawlzposts!") + if post.author_id == LAWLZ_ID and SITE_NAME == 'rDrama': abort(403, "Can't unpin lawlzposts!") post.stickied = None post.stickied_utc = None