mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_admin_telnet: config:get: Assume the global section if only one argument is given
This commit is contained in:
parent
11b2a79872
commit
5fb717bbce
1 changed files with 3 additions and 0 deletions
|
@ -496,6 +496,9 @@ function def_env.config:load(filename, format)
|
||||||
end
|
end
|
||||||
|
|
||||||
function def_env.config:get(host, key)
|
function def_env.config:get(host, key)
|
||||||
|
if key == nil then
|
||||||
|
host, key = "*", host;
|
||||||
|
end
|
||||||
local config_get = require "core.configmanager".get
|
local config_get = require "core.configmanager".get
|
||||||
return true, tostring(config_get(host, key));
|
return true, tostring(config_get(host, key));
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue