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
commit796429efbeba7521ad6f47ca40274f5555777294 (patch)
treec09e3522c37492e197f5aa0da4f419d62662b65f /tools
parentMUC: Fire muc-room-destroyed event when the last participant leaves a non-persistent room (diff)
downloadprosody-796429efbeba7521ad6f47ca40274f5555777294.tar.xz
prosody-796429efbeba7521ad6f47ca40274f5555777294.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 a8bfad0e0..8312ebd18 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]));