plugins/various: Use type-specific config API

This commit is contained in:
Kim Alvefur 2017-03-16 20:46:06 +01:00
parent 0bf98e614f
commit c3d7d52f0d
4 changed files with 6 additions and 6 deletions

View file

@ -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;