Do send last items only for subscription on current plugin type

This commit is contained in:
Christophe Romain 2016-07-08 15:18:39 +02:00
parent 661b041302
commit 6b38d19085
1 changed files with 2 additions and 1 deletions

View File

@ -418,7 +418,8 @@ send_loop(State) ->
{_, Node} = NodeRec#pubsub_node.nodeid,
Nidx = NodeRec#pubsub_node.id,
Options = NodeRec#pubsub_node.options,
send_items(Host, Node, Nidx, PType, Options, SubJID, last)
[send_items(Host, Node, Nidx, PType, Options, SubJID, last)
|| NodeRec#pubsub_node.type == PType]
end,
lists:usort(Subs))
end,