0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-27 07:54:05 +01:00

modules/m_room: Use empty string prev hashes.

This commit is contained in:
Jason Volk 2018-06-01 17:45:20 -07:00
parent 6cd9ad2d6f
commit da17cb1de2

View file

@ -39,7 +39,7 @@ make_auth(const m::room &room,
json::stack::object hash{auth};
json::stack::member will
{
hash, "willy", "nilly"
hash, "", ""
};
}
}});
@ -101,7 +101,7 @@ make_prev(const m::room &room,
json::stack::object hash{prev};
json::stack::member will
{
hash, "willy", "nilly"
hash, "", ""
};
}
@ -117,7 +117,7 @@ make_prev(const m::room &room,
json::stack::object hash{prev};
json::stack::member will
{
hash, "willy", "nilly"
hash, "", ""
};
}
}