mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_adhoc/adhoc.lib: instantiate table with all fields
This commit is contained in:
parent
e45c5961ac
commit
3829ac306e
1 changed files with 6 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue