aboutsummaryrefslogtreecommitdiffstats
path: root/core/stanza_router.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-05-31 00:43:24 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-05-31 00:43:24 +0500
commit1cd2044dcc448927f7d9fb753b3ccee0d3da1acd (patch)
treebe02503338597574d74ab21287b0f9a4ac04fca6 /core/stanza_router.lua
parent436c64f07d898f449cfb7178efe6248d8a0350e0 (diff)
downloadprosody-1cd2044dcc448927f7d9fb753b3ccee0d3da1acd.tar.gz
prosody-1cd2044dcc448927f7d9fb753b3ccee0d3da1acd.zip
stanza_router: Changed to use the prosody.events object directly, rather than through eventmanager2
Diffstat (limited to 'core/stanza_router.lua')
-rw-r--r--core/stanza_router.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index d4cbcd59..d03ff97a 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -42,7 +42,7 @@ local ipairs = ipairs;
local jid_split = require "util.jid".split;
local jid_prepped_split = require "util.jid".prepped_split;
local print = print;
-local fire_event = require "core.eventmanager2".fire_event;
+local fire_event = prosody.events.fire_event;
local select_best_resources;