aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-01-27 16:47:54 +0100
committerKim Alvefur <zash@zash.se>2014-01-27 16:47:54 +0100
commit6712a420669b560523170bedbe03f13ee941c52e (patch)
treea3633bc46118ae3fc37121d73563a57d0a0e87ad /tools
parenttools/ejabberd2prosody: Disable generating a config, as the format it generates is completely out of date. (diff)
downloadprosody-6712a420669b560523170bedbe03f13ee941c52e.tar.xz
prosody-6712a420669b560523170bedbe03f13ee941c52e.zip
tools/ejabberd2prosody: Handle new room member format.
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 bc916fb87..be1504b27 100755
--- a/tools/ejabberd2prosody.lua
+++ b/tools/ejabberd2prosody.lua
@@ -163,7 +163,7 @@ end
function muc_room(node, host, properties)
local store = { jid = node.."@"..host, _data = {}, _affiliations = {} };
for _,aff in ipairs(properties.affiliations) do
- store._affiliations[_table_to_jid(aff[1])] = aff[2];
+ store._affiliations[_table_to_jid(aff[1])] = aff[2][1] or aff[2];
end
store._data.subject = properties.subject;
if properties.subject_author then