mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_telnet: Don't pretty-print the normal console stuff
Typing e.g. `c2s` would dump out a bunch of stuff that would probably just confuse users. Now you only get pretty-printing when poking around in the internals with `>`.
This commit is contained in:
parent
f1c4d468e2
commit
95b5facf3b
1 changed files with 3 additions and 7 deletions
|
@ -145,10 +145,10 @@ function console:process_line(session, line)
|
|||
local taskok, message = chunk();
|
||||
|
||||
if not message then
|
||||
if type(taskok) ~= "string" then
|
||||
if type(taskok) ~= "string" and useglobalenv then
|
||||
taskok = session.serialize(taskok);
|
||||
end
|
||||
session.print("Result: "..taskok);
|
||||
session.print("Result: "..tostring(taskok));
|
||||
return;
|
||||
elseif (not taskok) and message then
|
||||
session.print("Command completed with a problem");
|
||||
|
@ -156,11 +156,7 @@ function console:process_line(session, line)
|
|||
return;
|
||||
end
|
||||
|
||||
if type(message) ~= "string" then
|
||||
message = session.serialize(message);
|
||||
end
|
||||
|
||||
session.print("OK: "..message);
|
||||
session.print("OK: "..tostring(message));
|
||||
end
|
||||
|
||||
local sessions = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue