mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Fixed the ejabberd importer to work with the pipe sign "|" as a separator in erlang lists
This commit is contained in:
parent
f5830f6ada
commit
48e386d5de
2 changed files with 176 additions and 178 deletions
|
@ -98,7 +98,7 @@ readItem = function()
|
|||
return readString();
|
||||
elseif ch == "<" then
|
||||
return readSpecialString();
|
||||
elseif isSpace(ch) or ch == "," then
|
||||
elseif isSpace(ch) or ch == "," or ch == "|" then
|
||||
read();
|
||||
return readItem();
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue