mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.adhoc: Allow passing dataforms in initial command
This might not be quite legal per XEP-0050, but makes it possible to call simpler commands without keeping state across another roundtrip.
This commit is contained in:
parent
9a83f0e20b
commit
80a38cc873
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
local function new_simple_form(form, result_handler)
|
||||
return function(self, data, state)
|
||||
if state then
|
||||
if state or data.form then
|
||||
if data.action == "cancel" then
|
||||
return { status = "canceled" };
|
||||
end
|
||||
|
@ -16,7 +16,7 @@ end
|
|||
|
||||
local function new_initial_data_form(form, initial_data, result_handler)
|
||||
return function(self, data, state)
|
||||
if state then
|
||||
if state or data.form then
|
||||
if data.action == "cancel" then
|
||||
return { status = "canceled" };
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue