25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-12-20 17:27:00 +01:00

fix missing binarization switch on pep nodes

This commit is contained in:
Christophe Romain 2013-06-24 19:55:33 +02:00
parent 1cc76ebb68
commit b07b820c4e

View File

@ -305,10 +305,10 @@ get_entity_subscriptions(_Host, Owner) ->
lists:map(fun ([H, N, T, I, J, S]) ->
O = node_hometree_odbc:decode_jid(H),
Node = nodetree_tree_odbc:raw_to_node(O,
{N,
[N,
<<"">>,
T,
I}),
I]),
{Node,
node_hometree_odbc:decode_subscriptions(S),
node_hometree_odbc:decode_jid(J)}
@ -353,10 +353,10 @@ get_entity_subscriptions_for_send_last(_Host, Owner) ->
lists:map(fun ([H, N, T, I, J, S]) ->
O = node_hometree_odbc:decode_jid(H),
Node = nodetree_tree_odbc:raw_to_node(O,
{N,
[N,
<<"">>,
T,
I}),
I]),
{Node,
node_hometree_odbc:decode_subscriptions(S),
node_hometree_odbc:decode_jid(J)}