From 1cf50bd2ba9cdd217ce40c9b8e8977bcbb1e18ac Mon Sep 17 00:00:00 2001 From: ehmicky Date: Tue, 26 May 2020 23:16:56 +0200 Subject: [PATCH] Fix undefined variable reference --- pluginCore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pluginCore.js b/pluginCore.js index bfa38b5..9c0639f 100644 --- a/pluginCore.js +++ b/pluginCore.js @@ -18,7 +18,7 @@ exports.generateRSS = async function(opts) { const feed_url = `${site_url}/rss.xml`; // may want to make this configurable in future const { title, - description = opts.rssDescription || 'RSS Feed for ' + rssFeedUrl, + description = opts.rssDescription || 'RSS Feed for ' + site_url, image_url = opts.rssFaviconUrl, docs, managingEditor = authorName,