mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-22 14:21:55 -06:00
Fix some more inthttp
This commit is contained in:
parent
27f4bd3f0e
commit
1294569c04
|
@ -163,6 +163,7 @@ func (h *httpFederationInternalAPI) GetUserDevices(
|
||||||
"GetUserDevices", h.federationAPIURL+FederationAPIGetUserDevicesPath, h.httpClient,
|
"GetUserDevices", h.federationAPIURL+FederationAPIGetUserDevicesPath, h.httpClient,
|
||||||
ctx, &getUserDevices{
|
ctx, &getUserDevices{
|
||||||
S: s,
|
S: s,
|
||||||
|
Origin: origin,
|
||||||
UserID: userID,
|
UserID: userID,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -181,6 +182,7 @@ func (h *httpFederationInternalAPI) ClaimKeys(
|
||||||
"ClaimKeys", h.federationAPIURL+FederationAPIClaimKeysPath, h.httpClient,
|
"ClaimKeys", h.federationAPIURL+FederationAPIClaimKeysPath, h.httpClient,
|
||||||
ctx, &claimKeys{
|
ctx, &claimKeys{
|
||||||
S: s,
|
S: s,
|
||||||
|
Origin: origin,
|
||||||
OneTimeKeys: oneTimeKeys,
|
OneTimeKeys: oneTimeKeys,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue