notif_utc

This commit is contained in:
Aevann1 2022-03-04 19:33:58 +02:00
parent d32797ae9e
commit 973f8e3c3b

View file

@ -118,7 +118,9 @@ class Comment(Base):
@property
@lazy
def age_string(self):
if self.notif_utc: timestamp = self.notif_utc
notif_utc = self.__dict__.get("notif_utc", None)
if notif_utc: timestamp = notif_utc
elif self.created_utc: timestamp = self.created_utc
else: return None