This commit is contained in:
Aevann1 2021-11-24 18:28:17 +02:00
parent 75c6244f85
commit 82ee587588

View file

@ -206,8 +206,8 @@ class User(Base):
@lazy
def ban_reason_link(self):
if self.ban_reason:
if self.ban_reason.startswith("/post/"): return self.ban_reason.split(" ", 1)[0]
if self.ban_reason.startswith("/comment/"): return self.ban_reason.split(" ", 1)[0] + "?context=9#context"
if self.ban_reason.startswith("/post/"): return self.ban_reason.split(None, 1)[0]
if self.ban_reason.startswith("/comment/"): return self.ban_reason.split(None, 1)[0] + "?context=9#context"
@property
@lazy