diff mod_pubsub_post/mod_pubsub_post.lua @ 3793:0d3926e49b55

mod_pubsub_post: Fix use of 'id' field in JSON object as pubsub item id `data` here is the source string, so there's no `id` field. Also only use the `id` field if it's a string.
author Kim Alvefur <zash@zash.se>
date Wed, 01 Jan 2020 10:11:08 +0100
parents 9ef5b229f73e
children f7381268a597
line wrap: on
line diff
--- a/mod_pubsub_post/mod_pubsub_post.lua	Mon Dec 30 22:44:12 2019 +0100
+++ b/mod_pubsub_post/mod_pubsub_post.lua	Wed Jan 01 10:11:08 2020 +0100
@@ -43,7 +43,7 @@
 		return { status_code = 400; body = "object or array expected"; };
 	end
 	local wrapper = st.stanza("json", { xmlns="urn:xmpp:json:0" }):text(data);
-	return publish_payload(node, actor, data.id or "current", wrapper);
+	return publish_payload(node, actor, type(parsed.id) == "string" and parsed.id or "current", wrapper);
 end
 
 local function publish_atom(node, actor, feed)