diff --git a/files/helpers/cron.py b/files/helpers/cron.py index e5b8a92ee9..97a7c5c4c9 100644 --- a/files/helpers/cron.py +++ b/files/helpers/cron.py @@ -61,6 +61,10 @@ def sub_inactive_purge_task(): Submission.private == False, Submission.is_banned == False, Submission.deleted_utc == 0).all()] active_holes.append('changelog') # system hole immune from deletion + active_holes.append('furry') # house holes immune from deletion + active_holes.append('vampire') + active_holes.append('racist') + active_holes.append('femboy') dead_holes = g.db.query(Sub).filter(Sub.name.notin_(active_holes)).all() names = [x.name for x in dead_holes]