forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-01-19 14:51:52 +02:00
parent 46c5ff4e6b
commit a1c94e8869
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ class User(Base):
@property
@lazy
def profile_url(self):
if self.agendaposter: return f"{SITE_FULL}/static/assets/images/defaultpictures/agendaposter/{random.randint(1, 50)}.webp?a=204"
if self.agendaposter: return f"{SITE_FULL}/static/assets/images/defaultpictures/agendaposter/{random.randint(1, 51)}.webp?a=204"
if self.profileurl: return self.profileurl
if SITE_NAME == 'Drama': return f"{SITE_FULL}/static/assets/images/defaultpictures/{random.randint(1, 150)}.webp?a=202"
return f"{SITE_FULL}/static/assets/images/default-profile-pic.webp?a=204"