diff options
Diffstat (limited to 'plugins/mod_roster.lua')
-rw-r--r-- | plugins/mod_roster.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_roster.lua b/plugins/mod_roster.lua index 23223a65..0b52e43e 100644 --- a/plugins/mod_roster.lua +++ b/plugins/mod_roster.lua @@ -11,7 +11,7 @@ local rm_roster_push = require "core.rostermanager".roster_push; require "core.discomanager".set("roster", "jabber:iq:roster"); -add_iq_handler("c2s", "jabber:iq:roster", +module:add_iq_handler("c2s", "jabber:iq:roster", function (session, stanza) if stanza.tags[1].name == "query" then if stanza.attr.type == "get" then @@ -103,4 +103,4 @@ add_iq_handler("c2s", "jabber:iq:roster", return true; end end - end);
\ No newline at end of file + end); |