From b238f24862721c811e922c09518dfc8f108d7920 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 3 Oct 2019 16:08:00 -0700 Subject: [PATCH] construct: Post matrix context; fix direct jump. --- construct/construct.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/construct/construct.cc b/construct/construct.cc index c88c751ef..b19caabc3 100644 --- a/construct/construct.cc +++ b/construct/construct.cc @@ -232,7 +232,7 @@ noexcept try if(level == ircd::run::level::IDLE && !context && !nomatrix) { // 3 Launch the homeserver context (asynchronous). - context = { "matrix", homeserver }; + context = { "matrix", ircd::context::POST, homeserver }; // 4 Yield until the homeserver function notifies `start`; waiting // here prevents ircd::main() from entering runlevel RUN.