Skip to content

Commit

Permalink
Fix undefined variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 26, 2020
1 parent 5c4add7 commit 1cf50bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pluginCore.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 1cf50bd

Please sign in to comment.