0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

ircd:Ⓜ️:relates: Fix property order for any canonical serialization.

This commit is contained in:
Jason Volk 2022-09-27 18:28:47 -07:00
parent da614e33a5
commit 9564d8fcdd

View file

@ -23,11 +23,12 @@ struct ircd::m::relates_to
/// Target event_id
json::property<name::event_id, json::string>,
/// Relation type
json::property<name::rel_type, json::string>,
/// m.in_reply_to object
json::property<name::m_in_reply_to, json::object>
json::property<name::m_in_reply_to, json::object>,
/// Relation type
json::property<name::rel_type, json::string>
>
{
using super_type::tuple;