aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/adhoc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-03-06 15:09:22 +0100
committerKim Alvefur <zash@zash.se>2017-03-06 15:09:22 +0100
commit3829ac306eaf47e5f056cbe9acbdb81cc60e95ef (patch)
treeb82c0588c6334026e1a16377ae9e7417ad8d9c79 /plugins/adhoc
parente45c5961ac42007aa6c9282afddff91cd1e27124 (diff)
downloadprosody-3829ac306eaf47e5f056cbe9acbdb81cc60e95ef.tar.gz
prosody-3829ac306eaf47e5f056cbe9acbdb81cc60e95ef.zip
mod_adhoc/adhoc.lib: instantiate table with all fields
Diffstat (limited to 'plugins/adhoc')
-rw-r--r--plugins/adhoc/adhoc.lib.lua11
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;