mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-21 13:53:09 -06:00
Invite input room events in separate goroutine
This commit is contained in:
parent
8fa3002f88
commit
5c6857f849
|
|
@ -158,7 +158,7 @@ func (r *RoomserverInternalAPI) PerformInvite(
|
|||
},
|
||||
}
|
||||
inputRes := &api.InputRoomEventsResponse{}
|
||||
_ = r.InputRoomEvents(ctx, inputReq, inputRes)
|
||||
go r.InputRoomEvents(ctx, inputReq, inputRes) // nolint:errcheck
|
||||
|
||||
succeeded = true
|
||||
return nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue