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:
parent
6cd9ad2d6f
commit
da17cb1de2
1 changed files with 3 additions and 3 deletions
|
@ -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, "", ""
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue