diff --git a/files/classes/user.py b/files/classes/user.py index 4a0a25c6f..d47942518 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -643,6 +643,8 @@ class User(Base): @property @lazy def modaction_notifications_count(self): + if self.id == AEVANN_ID and SITE_NAME != 'rDrama': return 0 + if self.admin_level: q = g.db.query(ModAction).filter( ModAction.created_utc > self.last_viewed_log_notifs,