Software /
code /
prosody-modules
Changeset
774:52caf54fc270
mod_block_strangers: Bump handler priority to 200 (just because)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 05 Aug 2012 02:26:45 +0100 |
parents | 773:107eb83aa732 |
children | 775:70ff25db37fa |
files | mod_block_strangers/mod_block_strangers.lua |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_block_strangers/mod_block_strangers.lua Sun Aug 05 01:49:03 2012 +0100 +++ b/mod_block_strangers/mod_block_strangers.lua Sun Aug 05 02:26:45 2012 +0100 @@ -15,7 +15,6 @@ end end -module:hook("message/bare", check_subscribed, 100); -module:hook("message/full", check_subscribed, 100); - -module:hook("iq/full", check_subscribed, 100); +module:hook("message/bare", check_subscribed, 200); +module:hook("message/full", check_subscribed, 200); +module:hook("iq/full", check_subscribed, 200);