# HG changeset patch # User Kim Alvefur # Date 1478536511 -3600 # Node ID 48686b399a883e82ce636fc1212f122416f8d73e # Parent 1903add39b7c63db0018b5ffcdc541850fd3f6d6 mod_proxy65_whitelist: Add proxy hosts enabled after module is loaded (fixes #494) diff -r 1903add39b7c -r 48686b399a88 mod_proxy65_whitelist/mod_proxy65_whitelist.lua --- a/mod_proxy65_whitelist/mod_proxy65_whitelist.lua Mon Nov 07 17:27:18 2016 +0100 +++ b/mod_proxy65_whitelist/mod_proxy65_whitelist.lua Mon Nov 07 17:35:11 2016 +0100 @@ -8,6 +8,12 @@ end end +module:hook_global("host-activated", function (host) + if hosts[host].modules.proxy65 then + allowed_streamhosts:add(host); + end +end); + local function filter_streamhosts(tag) if tag.name == "streamhost" and not allowed_streamhosts:contains(tag.attr.jid) then return nil;