diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-02-11 14:51:00 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-02-11 14:51:00 +0000 |
commit | c256444e8b4181648a938c24270feaade73d9b5a (patch) | |
tree | 32c4f7c09b9a30513a0507f570b43d879cde1c5c /core | |
parent | cf9471cd1c1dd8bde6c3406c570d0ae13bcd1372 (diff) | |
download | prosody-c256444e8b4181648a938c24270feaade73d9b5a.tar.gz prosody-c256444e8b4181648a938c24270feaade73d9b5a.zip |
hostmanager: Import jid_split (thanks chris)
Diffstat (limited to 'core')
-rw-r--r-- | core/hostmanager.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 0dd1d426..7edf8230 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -12,6 +12,7 @@ local events_new = require "util.events".new; local disco_items = require "util.multitable".new(); local NULL = {}; +local jid_split = require "util.jid".split; local uuid_gen = require "util.uuid".generate; local log = require "util.logger".init("hostmanager"); |