mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_admin_telnet: Use stanza:get_child_text()
This commit is contained in:
parent
87c32db77c
commit
73fe0d5471
1 changed files with 1 additions and 6 deletions
|
@ -538,12 +538,7 @@ function def_env.c2s:show(match_jid)
|
|||
count = count + 1;
|
||||
local status, priority = "unavailable", tostring(session.priority or "-");
|
||||
if session.presence then
|
||||
status = session.presence:child_with_name("show");
|
||||
if status then
|
||||
status = status:get_text() or "[invalid!]";
|
||||
else
|
||||
status = "available";
|
||||
end
|
||||
status = session.presence:get_child_text("show") or "available";
|
||||
end
|
||||
print(session_flags(session, { " "..jid.." - "..status.."("..priority..")" }));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue