mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.prosodyctl.shell: Fix sending terminal width with single argument
E.g. when you do 'prosodyctl shell "s2s:show()"', this is the case that triggers, and it was missing the @width argument, causing confusion.
This commit is contained in:
parent
d458a42c61
commit
21eabc7e58
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ local function start(arg) --luacheck: ignore 212/arg
|
|||
end
|
||||
|
||||
client.events.add_handler("connected", function()
|
||||
client.send(st.stanza("repl-input"):text(arg[1]));
|
||||
send_line(client, arg[1]);
|
||||
return true;
|
||||
end, 1);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue