mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
ircd:Ⓜ️:room: Fix the membership query for missing memberships.
This commit is contained in:
parent
d437042f38
commit
49ef5af3e5
1 changed files with 2 additions and 1 deletions
|
@ -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))
|
||||
};
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue