From d2b946df278b49f0cf6d0109dd235688c0f83597 Mon Sep 17 00:00:00 2001 From: Antony Date: Sat, 27 Nov 2021 22:37:37 -0400 Subject: [PATCH] fix: combined feed displayed title in place of description --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 43ecc96..9b48500 100644 --- a/lib/index.js +++ b/lib/index.js @@ -74,7 +74,7 @@ function createFeed(feedConfig, entries) { var thisEntry = entries[i]; var item = { title: thisEntry.title, - description: thisEntry.title, + description: thisEntry.description, url: thisEntry.link, guid: thisEntry.guid, categories: thisEntry.categories,