0
0
Fork 0
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:
Jason Volk 2020-03-14 18:07:08 -07:00
parent 344510086b
commit 83b7e0b9b1

View file

@ -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."