24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-14 22:00:16 +02:00

add missing list conversion

This commit is contained in:
Christophe Romain 2013-06-24 18:05:42 +02:00
parent 3976351c4d
commit 1cb03439f2

View File

@ -1245,7 +1245,7 @@ get_items(NodeId, From, none) ->
of of
{selected, [<<"val">>], [[Value]]} -> {selected, [<<"val">>], [[Value]]} ->
Tokens = element(2, Tokens = element(2,
erl_scan:string(<<Value/binary, ".">>)), erl_scan:string(binary_to_list(<<Value/binary, ".">>))),
element(2, erl_parse:parse_term(Tokens)); element(2, erl_parse:parse_term(Tokens));
_ -> ?MAXITEMS _ -> ?MAXITEMS
end, end,