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:
Kim Alvefur 2023-04-07 13:58:39 +02:00
parent d458a42c61
commit 21eabc7e58

View file

@ -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);