mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_version: Reduce scope of variable
It is only used in this if block anyways
This commit is contained in:
parent
304dcd7507
commit
08b5a03be3
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue