mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.prosodyctl.shell: Coerce terminal width to string (for util.stanza)
Fixes invalid attribute value: expected string, got number
This commit is contained in:
parent
7153f4e40a
commit
4725a96218
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue