aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_register.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-08-18 17:36:46 +0200
committerKim Alvefur <zash@zash.se>2016-08-18 17:36:46 +0200
commit782117034dc44969e35e4d35663045e5658b2913 (patch)
treea89e877c6e83d9aa3b79825812361591bf12bf2e /plugins/mod_register.lua
parent5e5b45be6ea322d815872a499ba85d4584cd28fd (diff)
parentf30f5f62189373fe8a2081d1117fbc2977331f26 (diff)
downloadprosody-782117034dc44969e35e4d35663045e5658b2913.tar.gz
prosody-782117034dc44969e35e4d35663045e5658b2913.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_register.lua')
-rw-r--r--plugins/mod_register.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua
index fda717f7..df833cad 100644
--- a/plugins/mod_register.lua
+++ b/plugins/mod_register.lua
@@ -226,7 +226,7 @@ module:hook("stanza/iq/jabber:iq:register:query", function(event)
session.send(st.error_reply(stanza, "cancel", "not-acceptable", "You are not allowed to register an account."));
return true;
elseif min_seconds_between_registrations and not whitelisted_ips[session.ip] then
- if check_throttle(session.ip) then
+ if not check_throttle(session.ip) then
session.send(st.error_reply(stanza, "wait", "not-acceptable"));
return true;
end