Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2013-06-24 21:55:33 +0400
committerChristophe Romain <christophe.romain@process-one.net>2013-06-24 21:56:27 +0400
commitb07b820c4ef93ac72ff9ed6427006b765fbf08a2 (patch)
tree81665a4391d9ba2966e910acae59673ae6d0ea4f /src/node_pep_odbc.erl
parent1cc76ebb68f71864404d8d71ef1fe8690857ec5a (diff)
fix missing binarization switch on pep nodes
Diffstat (limited to 'src/node_pep_odbc.erl')
-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)}