diff options
author | devonh <devon.dmytro@gmail.com> | 2023-05-31 15:27:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 15:27:08 +0000 |
commit | cbdc601f1b6d1c2a648b69ff44b3a49916f4d31a (patch) | |
tree | 6d14c55508579211e3833cab60cfdfea3fab04a6 /clientapi/threepid | |
parent | 61341aca500ec4d87e5b6d4c3f965c3836d6e6d6 (diff) |
Move CreateRoom logic to Roomserver (#3093)
Move create room logic over to roomserver.
Diffstat (limited to 'clientapi/threepid')
-rw-r--r-- | clientapi/threepid/invites.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clientapi/threepid/invites.go b/clientapi/threepid/invites.go index c296939d..9f4f62e4 100644 --- a/clientapi/threepid/invites.go +++ b/clientapi/threepid/invites.go @@ -380,7 +380,7 @@ func emit3PIDInviteEvent( } queryRes := api.QueryLatestEventsAndStateResponse{} - event, err := eventutil.QueryAndBuildEvent(ctx, proto, cfg.Matrix, identity, evTime, rsAPI, &queryRes) + event, err := eventutil.QueryAndBuildEvent(ctx, proto, identity, evTime, rsAPI, &queryRes) if err != nil { return err } |