From 5c6fb34cee176bd84721c55f7a45d5244cac82e8 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Tue, 9 Aug 2022 15:47:18 +0100 Subject: [PATCH] Fix another path --- federationapi/inthttp/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federationapi/inthttp/client.go b/federationapi/inthttp/client.go index 594b99610..726aaa03f 100644 --- a/federationapi/inthttp/client.go +++ b/federationapi/inthttp/client.go @@ -176,7 +176,7 @@ func (h *httpFederationInternalAPI) ClaimKeys( ctx context.Context, s gomatrixserverlib.ServerName, oneTimeKeys map[string]map[string]string, ) (gomatrixserverlib.RespClaimKeys, error) { return httputil.CallInternalProxyAPI[claimKeys, gomatrixserverlib.RespClaimKeys, api.FederationClientError]( - "GetUserDevices", h.federationAPIURL+FederationAPIGetUserDevicesPath, h.httpClient, + "ClaimKeys", h.federationAPIURL+FederationAPIClaimKeysPath, h.httpClient, ctx, &claimKeys{ S: s, OneTimeKeys: oneTimeKeys,