aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/adhoc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-12-05 12:32:25 +0100
committerKim Alvefur <zash@zash.se>2017-12-05 12:32:25 +0100
commit38247a94f103b38112bb0cfe89a8e60021b8d889 (patch)
tree2ee88247cf7af301a43e7021ee937708b9e19d3b /plugins/adhoc
parent13a4748074eac34ccdf05b936edc6ac12b8311c6 (diff)
downloadprosody-38247a94f103b38112bb0cfe89a8e60021b8d889.tar.gz
prosody-38247a94f103b38112bb0cfe89a8e60021b8d889.zip
mod_adhoc/adhoc.lib: Rename variable to avoid name clash [luacheck]
Diffstat (limited to 'plugins/adhoc')
-rw-r--r--plugins/adhoc/adhoc.lib.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/adhoc/adhoc.lib.lua b/plugins/adhoc/adhoc.lib.lua
index 87415636..91806d26 100644
--- a/plugins/adhoc/adhoc.lib.lua
+++ b/plugins/adhoc/adhoc.lib.lua
@@ -25,13 +25,13 @@ function _M.new(name, node, handler, permission)
end
function _M.handle_cmd(command, origin, stanza)
- local cmdtag = stanza.tags[1]
- local sessionid = cmdtag.attr.sessionid or uuid.generate();
+ local command = stanza.tags[1];
+ local sessionid = command.attr.sessionid or uuid.generate();
local dataIn = {
to = stanza.attr.to;
from = stanza.attr.from;
- action = cmdtag.attr.action or "execute";
- form = cmdtag:get_child("x", "jabber:x:data");
+ action = command.attr.action or "execute";
+ form = command:get_child("x", "jabber:x:data");
};
local data, state = command:handler(dataIn, states[sessionid]);