mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_version: Use text_tag
This commit is contained in:
parent
b701156f2f
commit
b2b84b2f72
1 changed files with 3 additions and 3 deletions
|
@ -13,8 +13,8 @@ module:add_feature("jabber:iq:version");
|
|||
local version;
|
||||
|
||||
local query = st.stanza("query", {xmlns = "jabber:iq:version"})
|
||||
:tag("name"):text("Prosody"):up()
|
||||
:tag("version"):text(prosody.version):up();
|
||||
:text_tag("name", "Prosody")
|
||||
:text_tag("version", prosody.version);
|
||||
|
||||
if not module:get_option_boolean("hide_os_type") then
|
||||
if os.getenv("WINDIR") then
|
||||
|
@ -35,7 +35,7 @@ if not module:get_option_boolean("hide_os_type") then
|
|||
end
|
||||
if version then
|
||||
version = version:match("^%s*(.-)%s*$") or version;
|
||||
query:tag("os"):text(version):up();
|
||||
query:text_tag("os", version);
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue