aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)}