mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_blocklist: Decrease priority of iq hooks to ease handling by other modules
This commit is contained in:
parent
75ff5d1a05
commit
602fc79098
1 changed files with 3 additions and 3 deletions
|
@ -113,7 +113,7 @@ module:hook("iq-get/self/urn:xmpp:blocking:blocklist", function (event)
|
|||
origin.interested_blocklist = true; -- Gets notified about changes
|
||||
origin.send(reply);
|
||||
return true;
|
||||
end);
|
||||
end, -1);
|
||||
|
||||
-- Add or remove some jid(s) from the blocklist
|
||||
-- We want this to be atomic and not do a partial update
|
||||
|
@ -215,8 +215,8 @@ local function edit_blocklist(event)
|
|||
return true;
|
||||
end
|
||||
|
||||
module:hook("iq-set/self/urn:xmpp:blocking:block", edit_blocklist);
|
||||
module:hook("iq-set/self/urn:xmpp:blocking:unblock", edit_blocklist);
|
||||
module:hook("iq-set/self/urn:xmpp:blocking:block", edit_blocklist, -1);
|
||||
module:hook("iq-set/self/urn:xmpp:blocking:unblock", edit_blocklist, -1);
|
||||
|
||||
-- Cache invalidation, solved!
|
||||
module:hook_global("user-deleted", function (event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue