From 1294569c0430f6b6702c0d483b3774c1881a3b4c Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Tue, 15 Nov 2022 14:46:57 +0000 Subject: [PATCH] Fix some more inthttp --- federationapi/inthttp/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/federationapi/inthttp/client.go b/federationapi/inthttp/client.go index 4489883cf..6c37a1f5a 100644 --- a/federationapi/inthttp/client.go +++ b/federationapi/inthttp/client.go @@ -163,6 +163,7 @@ func (h *httpFederationInternalAPI) GetUserDevices( "GetUserDevices", h.federationAPIURL+FederationAPIGetUserDevicesPath, h.httpClient, ctx, &getUserDevices{ S: s, + Origin: origin, UserID: userID, }, ) @@ -181,6 +182,7 @@ func (h *httpFederationInternalAPI) ClaimKeys( "ClaimKeys", h.federationAPIURL+FederationAPIClaimKeysPath, h.httpClient, ctx, &claimKeys{ S: s, + Origin: origin, OneTimeKeys: oneTimeKeys, }, )