diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-16 20:46:06 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-16 20:46:06 +0100 |
commit | fb749e207600e861af3f836a0316ad97fb41e553 (patch) | |
tree | 3eb037d679778fc3effcf9e0c850e8b6b781b032 /plugins/mod_version.lua | |
parent | 91262e2bc848551822a25cad697d6d660dd5301e (diff) | |
download | prosody-fb749e207600e861af3f836a0316ad97fb41e553.tar.gz prosody-fb749e207600e861af3f836a0316ad97fb41e553.zip |
plugins/various: Use type-specific config API
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r-- | plugins/mod_version.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua index be244beb..7f045415 100644 --- a/plugins/mod_version.lua +++ b/plugins/mod_version.lua @@ -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; |