0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-08-13 15:44:46 +02:00

Use new gmsl RelayEvents type for send_relay request body

This commit is contained in:
Devon Hudson 2023-01-31 12:32:36 -07:00
parent 7b3334778f
commit b935da6c33
No known key found for this signature in database
GPG key ID: CD06B18E77F6A628

View file

@ -36,11 +36,7 @@ func SendTransactionToRelay(
) util.JSONResponse {
logrus.Infof("Processing send_relay for %s", userID.Raw())
var txnEvents struct {
PDUs []json.RawMessage `json:"pdus"`
EDUs []gomatrixserverlib.EDU `json:"edus"`
}
var txnEvents gomatrixserverlib.RelayEvents
if err := json.Unmarshal(fedReq.Content(), &txnEvents); err != nil {
logrus.Info("The request body could not be decoded into valid JSON." + err.Error())
return util.JSONResponse{