mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
modules/client/rooms/join: Bypass dependent fetching and eval on join bootstrap.
This commit is contained in:
parent
b99117465f
commit
0658f7c6be
1 changed files with 3 additions and 1 deletions
|
@ -245,8 +245,10 @@ bootstrap(const string_view &host,
|
||||||
|
|
||||||
m::vm::copts opts;
|
m::vm::copts opts;
|
||||||
opts.infolog_accept = true;
|
opts.infolog_accept = true;
|
||||||
opts.fetch_prev_check = false;
|
opts.fetch_auth_check = false;
|
||||||
opts.fetch_state_check = false;
|
opts.fetch_state_check = false;
|
||||||
|
opts.fetch_prev_check = false;
|
||||||
|
opts.eval = false;
|
||||||
const m::event::id::buf event_id
|
const m::event::id::buf event_id
|
||||||
{
|
{
|
||||||
m::vm::eval
|
m::vm::eval
|
||||||
|
|
Loading…
Reference in a new issue