diff options
-rw-r--r-- | tools/ejabberdsql2prosody.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/ejabberdsql2prosody.lua b/tools/ejabberdsql2prosody.lua index ddbe3ee2..def3a907 100644 --- a/tools/ejabberdsql2prosody.lua +++ b/tools/ejabberdsql2prosody.lua @@ -241,6 +241,9 @@ for i, row in ipairs(t["rosterusers"] or NULL) do elseif ask == "I" then roster_pending(node, host, contact); ask = nil; + elseif ask == "B" then + roster_pending(node, host, contact); + ask = "subscribe"; else error("Unknown ask type: "..ask); end local item = {name = name, ask = ask, subscription = subscription, groups = {}}; roster(node, host, contact, item); |