From: Waqas Hussain Date: Fri, 15 May 2009 01:28:02 +0000 (+0500) Subject: mod_presence: return true from the presence handler X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=922473aea8fbf35a054fb00dbe7c01e07854dad3;p=prosody.git mod_presence: return true from the presence handler --- diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 2fb976b5..415e5313 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -268,6 +268,7 @@ local function presence_handler(data) core_route_stanza(origin, stanza); end end + return true; end local add_handler = require "core.eventmanager2".add_handler;