Invite input room events in separate goroutine

This commit is contained in:
Neil Alexander 2020-08-17 13:54:01 +01:00
parent 8fa3002f88
commit 5c6857f849
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -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