mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
modules/console: Default to membership=join for rooms members read; no head on fed backfill.
This commit is contained in:
parent
b1b6499552
commit
7d82b27907
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue