diff options
author | Kim Alvefur <zash@zash.se> | 2021-02-18 14:34:38 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-02-18 14:34:38 +0100 |
commit | e52a77ff84ec319ea060af26cc301d4486395c00 (patch) | |
tree | 2060dec64d9fa182e2dcaba76ea6cab07fbc25a6 | |
parent | 80116bf0e3cd26cd843b0b18ee09e09469ffa8e3 (diff) | |
download | prosody-e52a77ff84ec319ea060af26cc301d4486395c00.tar.gz prosody-e52a77ff84ec319ea060af26cc301d4486395c00.zip |
mod_http: Fix trusted proxies check (thanks buildbot)
is_trusted_proxy() is only in trunk, I dun goofed when I rebased
8603011e51fe from trunk.
-rw-r--r-- | plugins/mod_http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 0a365274..a1873e70 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -174,7 +174,7 @@ end module:wrap_object_event(server._events, false, function (handlers, event_name, event_data) local request = event_data.request; - if request and is_trusted_proxy(request.conn:ip()) then + if request and trusted_proxies[request.conn:ip()] then -- Not included in eg http-error events request.ip = get_ip_from_request(request); end |