0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 13:48:53 +02:00

modules/federation/send_leave: Respond with so-called empty response.

This commit is contained in:
Jason Volk 2019-03-06 13:48:53 -08:00
parent b26d4fee7c
commit 0c38d78bba

View file

@ -108,9 +108,14 @@ put__send_leave(client &client,
event, vmopts
};
static const json::array &response
{
"[200, {}]"
};
return resource::response
{
client, http::OK
client, http::OK, response
};
}