aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2014-01-18 17:24:10 -0500
committerWaqas Hussain <waqas20@gmail.com>2014-01-18 17:24:10 -0500
commit8e79e80b41777efc6b2224d7b07e1df46d006da9 (patch)
treec09e3522c37492e197f5aa0da4f419d62662b65f /tools
parent5b7954b21ff39de538b6303c7308f6e0f07389d1 (diff)
downloadprosody-8e79e80b41777efc6b2224d7b07e1df46d006da9.tar.gz
prosody-8e79e80b41777efc6b2224d7b07e1df46d006da9.zip
tools/ejabberd2prosody: ?xmlelement? can be ?xmlel? in newer ejabberd (thanks cr).
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ejabberd2prosody.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua
index a8bfad0e..8312ebd1 100755
--- a/tools/ejabberd2prosody.lua
+++ b/tools/ejabberd2prosody.lua
@@ -30,7 +30,7 @@ dm.set_data_path("data");
function build_stanza(tuple, stanza)
assert(type(tuple) == "table", "XML node is of unexpected type: "..type(tuple));
- if tuple[1] == "xmlelement" then
+ if tuple[1] == "xmlelement" or tuple[1] == "xmlel" then
assert(type(tuple[2]) == "string", "element name has type: "..type(tuple[2]));
assert(type(tuple[3]) == "table", "element attribute array has type: "..type(tuple[3]));
assert(type(tuple[4]) == "table", "element children array has type: "..type(tuple[4]));