# HG changeset patch # User Kim Alvefur # Date 1411500647 -7200 # Node ID cf572280b4dcd3dec94075d32014a448d6265e08 # Parent ef613b40591aa064b05d1f5ed5154b8d7a188ae9 mod_proxy65_whitelist: Fix variable name diff -r ef613b40591a -r cf572280b4dc mod_proxy65_whitelist/mod_proxy65_whitelist.lua --- a/mod_proxy65_whitelist/mod_proxy65_whitelist.lua Mon Sep 22 18:24:37 2014 +0200 +++ b/mod_proxy65_whitelist/mod_proxy65_whitelist.lua Tue Sep 23 21:30:47 2014 +0200 @@ -2,7 +2,7 @@ if module:get_option_boolean("allow_local_streamhosts", true) then for hostname, host in pairs(hosts) do - if streamhost.modules.proxy65 then + if host.modules.proxy65 then allowed_streamhosts:include(hostname); end end