# HG changeset patch # User Thijs Alkemade # Date 1444828919 -7200 # Node ID 720b291cb340eb036002022ae0ffa380a6e350ae # Parent c7389fe74de7ff66fbdd9c576913ce4ba867bdd1 mod_onions: Patch from David Goulet: Fix onions_map when the target is a string. diff -r c7389fe74de7 -r 720b291cb340 mod_onions/mod_onions.lua --- a/mod_onions/mod_onions.lua Wed Oct 14 14:07:57 2015 +0200 +++ b/mod_onions/mod_onions.lua Wed Oct 14 15:21:59 2015 +0200 @@ -239,7 +239,7 @@ if not to_host:find(".onion(.?)$") then if onions_map[to_host] then if type(onions_map[to_host]) == "string" then - onions_host = onions_map[to_host]; + onion_host = onions_map[to_host]; else onion_host = onions_map[to_host].host; onion_port = onions_map[to_host].port;