0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 18:22:50 +01:00

modules/client/sync/rooms/state: No need to fetch the creator member on phase 0.

This commit is contained in:
Jason Volk 2019-07-07 04:00:48 -07:00
parent 7f102e7f8c
commit b2ced7aea5

View file

@ -266,11 +266,6 @@ ircd::m::sync::room_state_phased_events(data &data)
{
ret = true;
room_state_append(data, array, event, index(event));
data.room->get(std::nothrow, "m.room.member", at<"sender"_>(event), [&]
(const m::event &event)
{
room_state_append(data, array, event, index(event));
});
});
data.room->get(std::nothrow, "m.room.canonical_alias", "", [&]