forked from rDrama/rDrama
1
0
Fork 0

fix previous commit (thx sneks)

master
Aevann1 2022-08-24 22:30:31 +02:00
parent 26c1267654
commit c3109601f4
1 changed files with 8 additions and 7 deletions

View File

@ -62,13 +62,14 @@ def sub_inactive_purge_task():
send_repeatable_notification(x.user_id, f":marseyrave: /h/{x.sub} has been deleted for inactivity after one week without new posts. All posts in it have been moved to the main feed :marseyrave:") send_repeatable_notification(x.user_id, f":marseyrave: /h/{x.sub} has been deleted for inactivity after one week without new posts. All posts in it have been moved to the main feed :marseyrave:")
for name in names: for name in names:
first_mod_id = g.db.query(Mod.user_id).filter(sub=name).order_by(Mod.created_utc).first()[0] first_mod_id = g.db.query(Mod.user_id).filter_by(sub=name).order_by(Mod.created_utc).first()
first_mod = get_account(first_mod_id) if first_mod_id:
badge_grant( first_mod = get_account(first_mod_id)
user=first_mod, badge_grant(
badge_id=156, user=first_mod,
description=f'Brought a Hole into this world, only to let it die (/h/{name})' badge_id=156,
) description=f'Brought a Hole into this world, only to let it die (/h/{name})'
)
for admin in admins: for admin in admins:
send_repeatable_notification(admin, f":marseyrave: /h/{name} has been deleted for inactivity after one week without new posts. All posts in it have been moved to the main feed :marseyrave:") send_repeatable_notification(admin, f":marseyrave: /h/{name} has been deleted for inactivity after one week without new posts. All posts in it have been moved to the main feed :marseyrave:")