aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-02-26 22:21:55 +0100
committerKim Alvefur <zash@zash.se>2014-02-26 22:21:55 +0100
commit4996a4724e87130c36f8d90b6cdf3628d39cebd8 (patch)
treeace5cad832311d8026958763adde400641650098 /tools
parent09eda513a8d25ca83612ca87d99d7208f211b608 (diff)
parent9ff00bc6169d7d64d4cea491c1b225ff0e3efa8a (diff)
downloadprosody-4996a4724e87130c36f8d90b6cdf3628d39cebd8.tar.gz
prosody-4996a4724e87130c36f8d90b6cdf3628d39cebd8.zip
Merge 0.9->0.10
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ejabberd2prosody.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua
index e9dbd2dc..66bf4f93 100755
--- a/tools/ejabberd2prosody.lua
+++ b/tools/ejabberd2prosody.lua
@@ -44,8 +44,10 @@ function build_stanza(tuple, stanza)
for _, a in ipairs(tuple[4]) do build_stanza(a, stanza); end
if up then stanza:up(); else return stanza end
elseif tuple[1] == "xmlcdata" then
- assert(type(tuple[2]) == "string", "XML CDATA has unexpected type: "..type(tuple[2]));
- stanza:text(tuple[2]);
+ if type(tuple[2]) ~= "table" then
+ assert(type(tuple[2]) == "string", "XML CDATA has unexpected type: "..type(tuple[2]));
+ stanza:text(tuple[2]);
+ end -- else it's [], i.e., the null value, used for the empty string
else
error("unknown element type: "..serialize(tuple));
end