Software / code / prosody
Changeset
9711:39dc037875e1
admin_telnet: show when bidi is used on s2s
| author | Maxime “pep” Buquet <pep@bouah.net> |
|---|---|
| date | Tue, 18 Dec 2018 20:23:33 +0000 |
| parents | 9710:8649a6b010e2 |
| children | 9713:aed9e6b1242a |
| files | plugins/mod_admin_telnet.lua |
| diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_admin_telnet.lua Mon Dec 17 15:42:54 2018 +0100 +++ b/plugins/mod_admin_telnet.lua Tue Dec 18 20:23:33 2018 +0000 @@ -521,6 +521,9 @@ if session.remote then line[#line+1] = "(remote)"; end + if session.is_bidi then + line[#line+1] = "(bidi)"; + end return table.concat(line, " "); end