aboutsummaryrefslogtreecommitdiff
path: root/roomserver/internal/perform/perform_create_room.go
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2024-02-13 19:28:52 +0100
committerGitHub <noreply@github.com>2024-02-13 19:28:52 +0100
commite9deb5244edd4827234622ea0d3b11678a33b0ac (patch)
tree8b5d4bc7da6b305ef506b85fbe1ac2a99f3dd1dd /roomserver/internal/perform/perform_create_room.go
parentbe0c27e68865f031e59a091fcec5244a7b48da44 (diff)
Fix `/createRoom` and `/invite` containing displayname/avatarURL of inviter (#3326)
Fixes #3324
Diffstat (limited to 'roomserver/internal/perform/perform_create_room.go')
-rw-r--r--roomserver/internal/perform/perform_create_room.go18
1 files changed, 8 insertions, 10 deletions
diff --git a/roomserver/internal/perform/perform_create_room.go b/roomserver/internal/perform/perform_create_room.go
index eb8de781..093082f9 100644
--- a/roomserver/internal/perform/perform_create_room.go
+++ b/roomserver/internal/perform/perform_create_room.go
@@ -503,16 +503,14 @@ func (c *Creator) PerformCreateRoom(ctx context.Context, userID spec.UserID, roo
err = c.RSAPI.PerformInvite(ctx, &api.PerformInviteRequest{
InviteInput: api.InviteInput{
- RoomID: roomID,
- Inviter: userID,
- Invitee: *inviteeUserID,
- DisplayName: createRequest.UserDisplayName,
- AvatarURL: createRequest.UserAvatarURL,
- Reason: "",
- IsDirect: createRequest.IsDirect,
- KeyID: createRequest.KeyID,
- PrivateKey: createRequest.PrivateKey,
- EventTime: createRequest.EventTime,
+ RoomID: roomID,
+ Inviter: userID,
+ Invitee: *inviteeUserID,
+ Reason: "",
+ IsDirect: createRequest.IsDirect,
+ KeyID: createRequest.KeyID,
+ PrivateKey: createRequest.PrivateKey,
+ EventTime: createRequest.EventTime,
},
InviteRoomState: globalStrippedState,
SendAsServer: string(userID.Domain()),