mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl shell: More reliable detection of REPL/interactive mode (fixes #1895)
This commit is contained in:
parent
384e3dbea2
commit
57d168dd5e
2 changed files with 5 additions and 7 deletions
|
@ -342,6 +342,8 @@ local function handle_line(event)
|
|||
local line = event.stanza:get_text();
|
||||
local useglobalenv;
|
||||
|
||||
session.repl = event.stanza.attr.repl ~= "0";
|
||||
|
||||
local result = st.stanza("repl-result");
|
||||
|
||||
if line:match("^>") then
|
||||
|
@ -422,10 +424,6 @@ local function handle_line(event)
|
|||
end
|
||||
end
|
||||
|
||||
if not source then
|
||||
session.repl = true;
|
||||
end
|
||||
|
||||
taskok, message = chunk(flags);
|
||||
|
||||
if promise.is_promise(taskok) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue