diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-06 15:09:22 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-06 15:09:22 +0100 |
commit | 3829ac306eaf47e5f056cbe9acbdb81cc60e95ef (patch) | |
tree | b82c0588c6334026e1a16377ae9e7417ad8d9c79 /plugins/adhoc/adhoc.lib.lua | |
parent | e45c5961ac42007aa6c9282afddff91cd1e27124 (diff) | |
download | prosody-3829ac306eaf47e5f056cbe9acbdb81cc60e95ef.tar.gz prosody-3829ac306eaf47e5f056cbe9acbdb81cc60e95ef.zip |
mod_adhoc/adhoc.lib: instantiate table with all fields
Diffstat (limited to 'plugins/adhoc/adhoc.lib.lua')
-rw-r--r-- | plugins/adhoc/adhoc.lib.lua | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/adhoc/adhoc.lib.lua b/plugins/adhoc/adhoc.lib.lua index 5c90c91b..87415636 100644 --- a/plugins/adhoc/adhoc.lib.lua +++ b/plugins/adhoc/adhoc.lib.lua @@ -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; |