util.prosodyctl.shell: Coerce terminal width to string (for util.stanza)

Fixes invalid attribute value: expected string, got number
This commit is contained in:
Kim Alvefur 2023-04-07 13:53:40 +02:00
parent 7153f4e40a
commit 4725a96218

View file

@ -30,7 +30,7 @@ local function read_line(prompt_string)
end
local function send_line(client, line)
client.send(st.stanza("repl-input", { width = term_width() }):text(line));
client.send(st.stanza("repl-input", { width = tostring(term_width()) }):text(line));
end
local function repl(client)