net.server: Try to require configmanager instead checking for the prosody global which does not yet exist when net.server is loaded now

This commit is contained in:
Kim Alvefur 2018-03-23 18:02:37 +01:00
parent 2fa049d2e1
commit f769dbb269

View file

@ -6,9 +6,13 @@
-- COPYING file in the source package for more information.
--
local server_type = prosody and require "core.configmanager".get("*", "network_backend") or "select";
if prosody and require "core.configmanager".get("*", "use_libevent") then
server_type = "event";
local server_type = "select";
local ok, configmanager = pcall(require, "core.configmanager");
if ok then
server_type = configmanager.get("*", "network_backend") or "select";
if require "core.configmanager".get("*", "use_libevent") then
server_type = "event";
end
end
if server_type == "event" then