aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2013-06-24 19:55:33 +0200
committerChristophe Romain <christophe.romain@process-one.net>2013-06-24 19:56:27 +0200
commitb07b820c4ef93ac72ff9ed6427006b765fbf08a2 (patch)
tree81665a4391d9ba2966e910acae59673ae6d0ea4f /src
parentcosmetic change (diff)
fix missing binarization switch on pep nodes
Diffstat (limited to 'src')
-rw-r--r--src/node_pep_odbc.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/node_pep_odbc.erl b/src/node_pep_odbc.erl
index e11a5ec7d..fd867038a 100644
--- a/src/node_pep_odbc.erl
+++ b/src/node_pep_odbc.erl
@@ -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)}