diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2013-07-10 09:47:49 +0200 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2013-07-10 09:47:49 +0200 |
commit | 4e72dd67513eca6619c5d66c7c89f5eb83240a59 (patch) | |
tree | e9bab1b3822857323acdb6c150f4dd9fe6849173 /src | |
parent | fix badmatch on remove_user on PEP nodes (EJAB-1649) (diff) |
fix badmatch in send_loop (EJAB-1650)
Diffstat (limited to 'src')
-rw-r--r-- | src/mod_pubsub_odbc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_pubsub_odbc.erl b/src/mod_pubsub_odbc.erl index 6932a8fd6..9874281d0 100644 --- a/src/mod_pubsub_odbc.erl +++ b/src/mod_pubsub_odbc.erl @@ -443,7 +443,7 @@ send_loop(State) -> LJID = jlib:jid_tolower(JID), BJID = jlib:jid_remove_resource(LJID), lists:foreach(fun (PType) -> - {result, Subscriptions} = case catch node_action(Host, + Subscriptions = case catch node_action(Host, PType, get_entity_subscriptions_for_send_last, [Host, JID]) of |