0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-01 00:08:22 +02:00

modules/client/createroom: Make special conditions to optimize user's user rooms.

This commit is contained in:
Jason Volk 2019-03-06 17:41:56 -08:00
parent 3b34785853
commit 33d3764c71

View file

@ -148,17 +148,29 @@ try
room.room_id
};
const json::string preset
{
json::get<"preset"_>(c)
};
// creator join event
const event::id::buf join_event_id
// user rooms don't have their user joined to them at this time otherwise
// they'll appear to clients.
if(preset != "user")
{
join(room, creator)
};
const event::id::buf join_event_id
{
join(room, creator)
};
}
// initial power_levels
thread_local char pl_content_buf[4_KiB]; try
// initial power levels aren't set on internal user rooms for now.
if(preset != "user") try
{
thread_local char pl_content_buf[4_KiB];
send(room, creator, "m.room.power_levels", "",
{
json::get<"power_level_content_override"_>(c)?
@ -176,11 +188,6 @@ try
// initial join_rules
const json::string preset
{
json::get<"preset"_>(c)
};
const string_view &join_rule
{
preset == "private_chat"? "invite":