mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
configmanager: Fix so unset variables are searched for in the global section
This commit is contained in:
parent
613c9b00c4
commit
869da6c240
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ local config_mt = { __index = function (t, k) return rawget(t, "*"); end};
|
|||
local config = setmetatable({ ["*"] = { } }, config_mt);
|
||||
|
||||
-- When host not found, use global
|
||||
local host_mt = { };
|
||||
local host_mt = { __index = function(_, k) return config["*"][k] end }
|
||||
|
||||
function getconfig()
|
||||
return config;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue