# HG changeset patch # User Kim Alvefur # Date 1736287059 -3600 # Node ID 0338a55691782aed4380be4a6b17bb07a7987204 # Parent 854df134274ff8208aba5a67b6b0f58a6af891ca mod_pubsub: Limit node listing based on new ACL-aware metadata method Ensures that nodes that one does not have metadata access to are hidden from view. This follows from the new ACL-aware method added in 3b357ab6b6eb. diff -r 854df134274f -r 0338a5569178 plugins/mod_pubsub/mod_pubsub.lua --- a/plugins/mod_pubsub/mod_pubsub.lua Tue Jan 07 19:28:06 2025 +0000 +++ b/plugins/mod_pubsub/mod_pubsub.lua Tue Jan 07 22:57:39 2025 +0100 @@ -185,7 +185,10 @@ return; end for node, node_obj in pairs(ret) do - reply:tag("item", { jid = module.host, node = node, name = node_obj.config.title }):up(); + local ok, meta = service:get_node_metadata(node, stanza.attr.from); + if ok then + reply:tag("item", { jid = module.host, node = node, name = meta.title }):up(); + end end end);