mirror of
https://github.com/matrix-construct/construct
synced 2025-02-18 09:40:12 +01:00
ircd:Ⓜ️:homeserver: Add missing alias room to the hs bootstrap for now; related 33f1ce6e09
.
This commit is contained in:
parent
344510086b
commit
83b7e0b9b1
1 changed files with 13 additions and 0 deletions
|
@ -920,6 +920,19 @@ try
|
|||
if(!exists(public_room))
|
||||
create(public_room, me);
|
||||
|
||||
const m::room::id::buf alias_room_id
|
||||
{
|
||||
"alias", origin(homeserver)
|
||||
};
|
||||
|
||||
const m::room alias_room
|
||||
{
|
||||
alias_room_id
|
||||
};
|
||||
|
||||
if(!exists(alias_room))
|
||||
create(alias_room, me);
|
||||
|
||||
log::info
|
||||
{
|
||||
log, "Bootstrap event generation completed nominally."
|
||||
|
|
Loading…
Add table
Reference in a new issue