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
commite9de1840d4cb557a8b373743a4b53c31efd66f56 (patch)
treec09e3522c37492e197f5aa0da4f419d62662b65f /tools
parenta5f500f63dbbd0e4fc4be5ce440ba8b282b43dc5 (diff)
downloadprosody-e9de1840d4cb557a8b373743a4b53c31efd66f56.tar.gz
prosody-e9de1840d4cb557a8b373743a4b53c31efd66f56.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]));