mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
modules/client/rooms/join: Rename lazychain conf item to lazychain_enable.
This commit is contained in:
parent
ae4ba48899
commit
e8b61b0caf
1 changed files with 4 additions and 4 deletions
|
@ -212,10 +212,10 @@ backfill_first
|
||||||
};
|
};
|
||||||
|
|
||||||
conf::item<bool>
|
conf::item<bool>
|
||||||
lazychain
|
lazychain_enable
|
||||||
{
|
{
|
||||||
{ "name", "ircd.client.rooms.join.lazychain" },
|
{ "name", "ircd.client.rooms.join.lazychain.enable" },
|
||||||
{ "default", true },
|
{ "default", true },
|
||||||
{ "description",
|
{ "description",
|
||||||
|
|
||||||
R"(
|
R"(
|
||||||
|
@ -385,7 +385,7 @@ bootstrap_eval_auth_chain(const json::array &auth_chain)
|
||||||
opts.infolog_accept = true;
|
opts.infolog_accept = true;
|
||||||
opts.fetch = false;
|
opts.fetch = false;
|
||||||
|
|
||||||
if(!lazychain)
|
if(!lazychain_enable)
|
||||||
{
|
{
|
||||||
m::vm::eval
|
m::vm::eval
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue