Skip to content

Commit

Permalink
Set name of MatrixHomeserver if creating
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-russell committed Aug 30, 2024
1 parent 802b95a commit 9b6f134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fractal/cli/controllers/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def login(
)
except MatrixHomeserver.DoesNotExist:
with transaction.atomic():
hs = MatrixHomeserver.objects.create(url=homeserver_url)
hs = MatrixHomeserver.objects.create(url=homeserver_url, name="Synapse")
MatrixCredentials.objects.create(
matrix_id=matrix_id,
access_token=access_token,
Expand Down

0 comments on commit 9b6f134

Please sign in to comment.