mod_pubsub_feeds/feeds.lib.lua
changeset 4431 c402b273f2e3
parent 2382 649f733aa3dc
child 4432 b328ca621ba6
--- a/mod_pubsub_feeds/feeds.lib.lua	Thu Feb 04 01:12:41 2021 +0100
+++ b/mod_pubsub_feeds/feeds.lib.lua	Thu Feb 04 16:16:29 2021 -0001
@@ -72,6 +72,10 @@
 				translator(feed, tag);
 			end
 		end
+		-- Preserve Atom-namespaced items
+		for atomtag in item:childtags(nil, "http://www.w3.org/2005/Atom") do
+			feed:add_child(st.clone(atomtag));
+		end
 		feed:reset();
 	end
 	return feed;