mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
plugins/various: Use type-specific config API
This commit is contained in:
parent
0bf98e614f
commit
c3d7d52f0d
4 changed files with 6 additions and 6 deletions
|
@ -16,11 +16,11 @@ local query = st.stanza("query", {xmlns = "jabber:iq:version"})
|
|||
:tag("name"):text("Prosody"):up()
|
||||
:tag("version"):text(prosody.version):up();
|
||||
|
||||
if not module:get_option("hide_os_type") then
|
||||
if not module:get_option_boolean("hide_os_type") then
|
||||
if os.getenv("WINDIR") then
|
||||
version = "Windows";
|
||||
else
|
||||
local os_version_command = module:get_option("os_version_command");
|
||||
local os_version_command = module:get_option_string("os_version_command");
|
||||
local ok, pposix = pcall(require, "util.pposix");
|
||||
if not os_version_command and (ok and pposix and pposix.uname) then
|
||||
version = pposix.uname().sysname;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue