remove now-unnecessary

pull/225/head
Aevann 2024-02-29 01:56:15 +02:00
parent f6b67a52cb
commit bd1f6d0311
1 changed files with 1 additions and 1 deletions

View File

@ -891,7 +891,7 @@ class User(Base):
@property
@lazy
def offsite_notifications_count(self):
if not self.can_view_offsite_mentions or (SITE == "watchpeopledie.tv" and self.id == AEVANN_ID):
if not self.can_view_offsite_mentions:
return 0
return g.db.query(Comment).filter(
Comment.created_utc > self.last_viewed_offsite_notifs,