This commit is contained in:
Aevann1 2022-01-28 22:02:35 +02:00
parent 8c1ac90b10
commit 0677106b21
10 changed files with 24 additions and 31 deletions

View file

@ -313,7 +313,7 @@ class User(Base):
@property
@lazy
def url(self):
return f"/@{self.username}"
return f"{SITE_FULL}/@{self.username}"
def __repr__(self):
return f"<User(id={self.id})>"