From 27f4bd3f0ef47268fda21d8a6e22635d7573d7f1 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Tue, 15 Nov 2022 14:27:48 +0000 Subject: [PATCH] Fix the other type of keys --- federationapi/inthttp/client.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/federationapi/inthttp/client.go b/federationapi/inthttp/client.go index 43f88b828..4489883cf 100644 --- a/federationapi/inthttp/client.go +++ b/federationapi/inthttp/client.go @@ -198,8 +198,9 @@ func (h *httpFederationInternalAPI) QueryKeys( return httputil.CallInternalProxyAPI[queryKeys, gomatrixserverlib.RespQueryKeys, *api.FederationClientError]( "QueryKeys", h.federationAPIURL+FederationAPIQueryKeysPath, h.httpClient, ctx, &queryKeys{ - S: s, - Keys: keys, + S: s, + Origin: origin, + Keys: keys, }, ) }