Mercurial > prosody-modules
diff mod_onions/mod_onions.lua @ 1910:720b291cb340
mod_onions: Patch from David Goulet: Fix onions_map when the target is a string.
author | Thijs Alkemade <me@thijsalkema.de> |
---|---|
date | Wed, 14 Oct 2015 15:21:59 +0200 |
parents | 12ac88940fe3 |
children | db7c80c2d681 |
line wrap: on
line diff
--- 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;