Software / code / prosody
Diff
plugins/mod_register.lua @ 7570:c61ea328fac2
mod_register: Fix inverted throttle check (fixes #724)
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 13 Aug 2016 15:42:57 +0200 |
| parent | 7293:c4af754d1e1b |
| child | 7709:0af1783d1592 |
line wrap: on
line diff
--- a/plugins/mod_register.lua Sat Aug 13 15:09:43 2016 +0200 +++ b/plugins/mod_register.lua Sat Aug 13 15:42:57 2016 +0200 @@ -226,7 +226,7 @@ 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