8===============D

This commit is contained in:
CaringCleaner 2021-11-24 15:50:35 +00:00
parent f8ecf99c38
commit 77a23ad1d4

View file

@ -202,10 +202,7 @@ class User(Base):
@property
@lazy
def ban_reason_link(self):
if not self.ban_reason:
return self.ban_reason
if self.ban_reason.startswith("/post/") or self.ban_reason.startswith("/comment/"):
if self.ban_reason and (self.ban_reason.startswith("/post/") or self.ban_reason.startswith("/comment/")):
return self.ban_reason.split(" ", 1)[0]
@property