mod_version: Reduce scope of variable

It is only used in this if block anyways
This commit is contained in:
Kim Alvefur 2018-10-06 16:38:05 +02:00
parent 304dcd7507
commit 08b5a03be3

View file

@ -10,13 +10,12 @@ local st = require "util.stanza";
module:add_feature("jabber:iq:version");
local platform;
local query = st.stanza("query", {xmlns = "jabber:iq:version"})
:text_tag("name", "Prosody")
:text_tag("version", prosody.version);
if not module:get_option_boolean("hide_os_type") then
local platform;
if os.getenv("WINDIR") then
platform = "Windows";
else