mod_offline: Decrease priority of event handlers so 3rd party hooks fire first by default

This commit is contained in:
Kim Alvefur 2015-09-16 15:18:30 +02:00
parent 461b90b5b4
commit 32bb9cbee2

View file

@ -30,7 +30,7 @@ module:hook("message/offline/handle", function(event)
stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
return result;
end);
end, -1);
module:hook("message/offline/broadcast", function(event)
local origin = event.origin;
@ -48,4 +48,4 @@ module:hook("message/offline/broadcast", function(event)
end
datamanager.list_store(node, host, "offline", nil);
return true;
end);
end, -1);