diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-06 16:32:37 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-06 16:32:37 +0200 |
commit | 304dcd7507636417c760db88171319dd05f204b4 (patch) | |
tree | 08e5d7067fbf3c9d77524383cdc4c991e681fa8f | |
parent | 07a48b20a32263babe13c411ebd8038d11864448 (diff) | |
download | prosody-304dcd7507636417c760db88171319dd05f204b4.tar.gz prosody-304dcd7507636417c760db88171319dd05f204b4.zip |
mod_version: Rename confusingly named variable
Maybe this meant the version of the OS, but it's still confusing.
-rw-r--r-- | plugins/mod_version.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua index d434792c..71730ba9 100644 --- a/plugins/mod_version.lua +++ b/plugins/mod_version.lua @@ -10,7 +10,7 @@ local st = require "util.stanza"; module:add_feature("jabber:iq:version"); -local version; +local platform; local query = st.stanza("query", {xmlns = "jabber:iq:version"}) :text_tag("name", "Prosody") @@ -18,24 +18,24 @@ local query = st.stanza("query", {xmlns = "jabber:iq:version"}) if not module:get_option_boolean("hide_os_type") then if os.getenv("WINDIR") then - version = "Windows"; + platform = "Windows"; else 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; + platform = pposix.uname().sysname; end - if not version then + if not platform then local uname = io.popen(os_version_command or "uname"); if uname then - version = uname:read("*a"); + platform = uname:read("*a"); end uname:close(); end end - if version then - version = version:match("^%s*(.-)%s*$") or version; - query:text_tag("os", version); + if platform then + platform = platform:match("^%s*(.-)%s*$") or platform; + query:text_tag("os", platform); end end |