diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-12-02 16:58:24 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-12-02 16:58:24 +0500 |
commit | b577225611c6aad89b527fd2339b30a150a92db9 (patch) | |
tree | 202b692e889f75b846807fc11d642ed0dc8fdcc2 | |
parent | cf491395d855fb99bd4d9724d683fd3b1a7a6aeb (diff) | |
download | prosody-b577225611c6aad89b527fd2339b30a150a92db9.tar.gz prosody-b577225611c6aad89b527fd2339b30a150a92db9.zip |
mod_iq: Fix an extra character in previous commit...
-rw-r--r-- | plugins/mod_iq.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_iq.lua b/plugins/mod_iq.lua index 0c78abb4..484a1f8f 100644 --- a/plugins/mod_iq.lua +++ b/plugins/mod_iq.lua @@ -13,7 +13,7 @@ local jid_split = require "util.jid".split; local full_sessions = full_sessions; local bare_sessions = bare_sessions; -if module::get_host_type() == "local" then +if module:get_host_type() == "local" then module:hook("iq/full", function(data) -- IQ to full JID recieved local origin, stanza = data.origin, data.stanza; |