0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-24 12:58:21 +02:00

ircd:Ⓜ️:room: Fix the membership query for missing memberships.

This commit is contained in:
Jason Volk 2018-06-02 18:24:39 -07:00
parent d437042f38
commit 49ef5af3e5

View file

@ -197,6 +197,7 @@ const
event::keys::include
{
"membership",
"content"
}
};
@ -218,7 +219,7 @@ const
{
ret =
{
data(out), copy(out, unquote(at<"membership"_>(event)))
data(out), copy(out, m::membership(event))
};
});