diff --git a/files/classes/user.py b/files/classes/user.py index 55f9aac700..433e368c15 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -402,7 +402,7 @@ class User(Base): @property @lazy def can_view_offsitementions(self): - return self.offsitementions or self.admin_level >= PERMS['NOTIFICATIONS_REDDIT'] + return self.offsitementions or (self.admin_level >= PERMS['NOTIFICATIONS_REDDIT'] and self.id != AEVANN_ID) @property @lazy