diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/componentmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/componentmanager.lua b/core/componentmanager.lua index e4799790..c6ca4553 100644 --- a/core/componentmanager.lua +++ b/core/componentmanager.lua @@ -75,7 +75,7 @@ function create_component(host, component, events) -- We need to find SSL context to use... -- Discussion in prosody@ concluded that -- 1 level back is usually enough by default - local base_host = host:gsub("^[^%.]+", ""); + local base_host = host:gsub("^[^%.]+%.", ""); if hosts[base_host] then ssl_ctx = hosts[base_host].ssl_ctx; end |