aboutsummaryrefslogtreecommitdiff
path: root/federationapi/routing/eventauth.go
diff options
context:
space:
mode:
Diffstat (limited to 'federationapi/routing/eventauth.go')
-rw-r--r--federationapi/routing/eventauth.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/federationapi/routing/eventauth.go b/federationapi/routing/eventauth.go
index 003165c8..34eaad1c 100644
--- a/federationapi/routing/eventauth.go
+++ b/federationapi/routing/eventauth.go
@@ -25,13 +25,13 @@ import (
func GetEventAuth(
ctx context.Context,
request *gomatrixserverlib.FederationRequest,
- query api.RoomserverQueryAPI,
+ rsAPI api.RoomserverInternalAPI,
roomID string,
eventID string,
) util.JSONResponse {
// TODO: Optimisation: we shouldn't be querying all the room state
// that is in state.StateEvents - we just ignore it.
- state, err := getState(ctx, request, query, roomID, eventID)
+ state, err := getState(ctx, request, rsAPI, roomID, eventID)
if err != nil {
return *err
}