mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_offline: Decrease priority of event handlers so 3rd party hooks fire first by default
This commit is contained in:
parent
461b90b5b4
commit
32bb9cbee2
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue