diff options
author | Waqas Hussain <waqas20@gmail.com> | 2014-01-18 17:24:10 -0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2014-01-18 17:24:10 -0500 |
commit | 05906a47abdc8aa032697b5ac93423222d317e43 (patch) | |
tree | c09e3522c37492e197f5aa0da4f419d62662b65f | |
parent | 35b1cbefb4555a7c8e8c06a3aa9f0e2f9245f61e (diff) | |
download | prosody-05906a47abdc8aa032697b5ac93423222d317e43.tar.gz prosody-05906a47abdc8aa032697b5ac93423222d317e43.zip |
tools/ejabberd2prosody: “xmlelement” can be “xmlel” in newer ejabberd (thanks cr).
-rwxr-xr-x | tools/ejabberd2prosody.lua | 2 |
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])); |