From 66aa4c5c351483f2eafcc9c97114aed3e4ba3f29 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 30 Aug 2022 14:18:35 +0200 Subject: [PATCH] make the parantheses stack work for comments too --- files/classes/comment.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/files/classes/comment.py b/files/classes/comment.py index d0890ae65..536b85217 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -263,7 +263,14 @@ class Comment(Base): @lazy def author_name(self): if self.ghost: return '👻' - if self.author.earlylife: return f'((({self.author.username})))' + if self.author.earlylife: + expiry = int(self.author.earlylife - time.time()) + if expiry > 86400: + name = self.author.username + for i in range(int(expiry / 86400 + 1)): + name = f'((({name})))' + return name + return f'((({self.author.username})))' return self.author.username @lazy