mirror of
https://github.com/matrix-construct/construct
synced 2025-02-18 01:30:12 +01:00
ircd:Ⓜ️:vm: Relax head::generate options for internal rooms.
This commit is contained in:
parent
b2564fb5d2
commit
751b413f0d
1 changed files with 4 additions and 4 deletions
|
@ -221,10 +221,10 @@ ircd::m::vm::inject(eval &eval,
|
|||
{
|
||||
prev_buf, head,
|
||||
{
|
||||
16, // .limit = 16,
|
||||
true, // .need_top_head = true,
|
||||
true, // .need_my_head = false,
|
||||
eval.room_version // .version = eval.room_version,
|
||||
16, // .limit = 16,
|
||||
!eval.room_internal, // .need_top_head = true for non-internal rooms
|
||||
!eval.room_internal, // .need_my_head = true for non-internal rooms
|
||||
eval.room_version // .version = eval.room_version,
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue