aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-07-25 12:26:07 +0200
committerKim Alvefur <zash@zash.se>2019-07-25 12:26:07 +0200
commit3ecb639c7160f1b26eea1df1eca19aedd91257bf (patch)
tree203c745793ef7790f5283b8f058593e592531dba /plugins
parent0cd5fc425d98ae6bf94b4e06a3a2d8196a9ddaf4 (diff)
downloadprosody-3ecb639c7160f1b26eea1df1eca19aedd91257bf.tar.gz
prosody-3ecb639c7160f1b26eea1df1eca19aedd91257bf.zip
mod_pubsub: Eliminate dead code
`data` is a stanza and always truthy
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_pubsub/pubsub.lib.lua11
1 files changed, 3 insertions, 8 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua
index 83c81bb7..d59e3d85 100644
--- a/plugins/mod_pubsub/pubsub.lib.lua
+++ b/plugins/mod_pubsub/pubsub.lib.lua
@@ -328,14 +328,9 @@ function handlers.get_items(origin, stanza, items, service)
for _, id in ipairs(results) do
data:add_child(results[id]);
end
- local reply;
- if data then
- reply = st.reply(stanza)
- :tag("pubsub", { xmlns = xmlns_pubsub })
- :add_child(data);
- else
- reply = pubsub_error_reply(stanza, "item-not-found");
- end
+ local reply = st.reply(stanza)
+ :tag("pubsub", { xmlns = xmlns_pubsub })
+ :add_child(data);
origin.send(reply);
return true;
end