1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 07:18:25 +02:00

Fix matrix avatar

This commit is contained in:
Yohann D'ANELLO
2021-01-23 13:41:43 +01:00
parent ea38c06631
commit 01a6e28623
2 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,10 @@ class Command(BaseCommand):
else: # pragma: no cover
if not os.path.isfile(".matrix_avatar"):
avatar_uri = Matrix.get_avatar()
if not isinstance(avatar_uri, str):
if isinstance(avatar_uri, str):
with open(".matrix_avatar", "w") as f:
f.write(avatar_uri)
else:
stat_file = os.stat("tfjm/static/logo.png")
with open("tfjm/static/logo.png", "rb") as f:
resp = Matrix.upload(f, filename="logo.png", content_type="image/png",