Changeset

415:37674f8ce263

verse.plugins.pep: Support taking an item id, default to "current" XEP-0060 recommends using "current" in section 'Singleton Nodes' and many PEP use cases follow this pattern.
author Kim Alvefur <zash@zash.se>
date Sun, 20 May 2018 00:56:24 +0200
parents 414:2a5eff919f4a
children 416:92ce569b9b73
files plugins/pep.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/pep.lua	Sun May 20 00:51:58 2018 +0200
+++ b/plugins/pep.lua	Sun May 20 00:56:24 2018 +0200
@@ -28,7 +28,7 @@
 		end
 	end
 
-	function stream:publish_pep(item, node)
-		return stream.pubsub:service(nil):node(node or item.attr.xmlns):publish(nil, nil, item)
+	function stream:publish_pep(item, node, id)
+		return stream.pubsub:service(nil):node(node or item.attr.xmlns):publish(id or "current", nil, item)
 	end
 end