mod_adhoc/adhoc.lib: instantiate table with all fields

This commit is contained in:
Kim Alvefur 2017-03-06 15:09:22 +01:00
parent e45c5961ac
commit 3829ac306e

View file

@ -27,11 +27,12 @@ end
function _M.handle_cmd(command, origin, stanza)
local cmdtag = stanza.tags[1]
local sessionid = cmdtag.attr.sessionid or uuid.generate();
local dataIn = {};
dataIn.to = stanza.attr.to;
dataIn.from = stanza.attr.from;
dataIn.action = cmdtag.attr.action or "execute";
dataIn.form = cmdtag:get_child("x", "jabber:x:data");
local dataIn = {
to = stanza.attr.to;
from = stanza.attr.from;
action = cmdtag.attr.action or "execute";
form = cmdtag:get_child("x", "jabber:x:data");
};
local data, state = command:handler(dataIn, states[sessionid]);
states[sessionid] = state;