0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 04:08:54 +02:00

modules/console: Default to membership=join for rooms members read; no head on fed backfill.

This commit is contained in:
Jason Volk 2018-05-23 16:29:17 -07:00
parent b1b6499552
commit 7d82b27907

View file

@ -3538,7 +3538,7 @@ console_cmd__room__members__read(opt &out, const string_view &line)
const string_view membership
{
param[1]
param.at(1, "join"_sv)
};
m::room::id::buf room_id
@ -5553,6 +5553,8 @@ console_cmd__fed__backfill(opt &out, const string_view &line)
vmopts.head_must_exist = false;
vmopts.history = false;
vmopts.notify = false;
vmopts.head = false;
vmopts.refs = true;
m::vm::eval eval
{
vmopts