From e380b86c9712a56ae613febb5cfdf7ec124f14d3 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sat, 17 Oct 2009 13:31:39 +0100 Subject: componentmanager: Handle missing prosody object (helps us pass some tests) --- core/componentmanager.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'core/componentmanager.lua') diff --git a/core/componentmanager.lua b/core/componentmanager.lua index 6f5e28e6..2d292c8f 100644 --- a/core/componentmanager.lua +++ b/core/componentmanager.lua @@ -6,7 +6,7 @@ -- COPYING file in the source package for more information. -- -local prosody = prosody; +local prosody = _G.prosody; local log = require "util.logger".init("componentmanager"); local configmanager = require "core.configmanager"; local modulemanager = require "core.modulemanager"; @@ -51,7 +51,9 @@ function load_enabled_components(config) end end -prosody.events.add_handler("server-starting", load_enabled_components); +if prosody and prosody.events then + prosody.events.add_handler("server-starting", load_enabled_components); +end function handle_stanza(origin, stanza) local node, host = jid_split(stanza.attr.to); -- cgit v1.2.3