diff options
author | Kim Alvefur <zash@zash.se> | 2014-12-09 19:36:34 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-12-09 19:36:34 +0100 |
commit | f361945594fd28aced85bb500332d186f171e7a5 (patch) | |
tree | a18ab778eaa36ce5466d8dc87138cf256711ade6 | |
parent | 52642e5699f9b0cbd4e93178ea3981d9963f509b (diff) | |
download | prosody-f361945594fd28aced85bb500332d186f171e7a5.tar.gz prosody-f361945594fd28aced85bb500332d186f171e7a5.zip |
mod_blocklist: Fix import
-rw-r--r-- | plugins/mod_blocklist.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_blocklist.lua b/plugins/mod_blocklist.lua index 70bfb5fc..81bdd2c6 100644 --- a/plugins/mod_blocklist.lua +++ b/plugins/mod_blocklist.lua @@ -13,7 +13,7 @@ local user_exists = require"core.usermanager".user_exists; local is_contact_subscribed = require"core.rostermanager".is_contact_subscribed; local st = require"util.stanza"; local st_error_reply = st.error_reply; -local jid_prep, jid_split = import("jid", "prep", "split"); +local jid_prep, jid_split = import("util.jid", "prep", "split"); local host = module.host; local storage = module:open_store(); |