diff options
author | vesvalo <vesvalo@mail.ru> | 2014-08-21 11:23:58 +0400 |
---|---|---|
committer | vesvalo <vesvalo@mail.ru> | 2014-08-21 11:23:58 +0400 |
commit | c48b7f272bc6d1c6ff924dd7b5a8e480c5c56743 (patch) | |
tree | 60569a11d99fbad28431653fee8056036a08a151 | |
parent | Merge pull request #284 from weiss/infinity-vs-unlimited (diff) |
fix 404 on pep first publishing with odbc
Diffstat (limited to '')
-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 a5e05a8d7..53329d332 100644 --- a/src/mod_pubsub_odbc.erl +++ b/src/mod_pubsub_odbc.erl @@ -2315,7 +2315,7 @@ create_node(Host, ServerHost, Node, Owner, GivenType, Access, Configuration) -> {result, Reply}; {result, {NodeId, _SubsByDepth, Result}} -> ejabberd_hooks:run(pubsub_create_node, ServerHost, [ServerHost, Host, Node, NodeId, NodeOptions]), - {result, Result}; + {result, Reply}; Error -> %% in case we change transaction to sync_dirty... %% node_call(Type, delete_node, [Host, Node]), |