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:
Kim Alvefur 2020-02-26 00:59:35 +01:00
parent 9a83f0e20b
commit 80a38cc873

View file

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