diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/feed.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/feed.js b/scripts/feed.js index 5bf025b..1b1b368 100644 --- a/scripts/feed.js +++ b/scripts/feed.js @@ -32,7 +32,7 @@ hexo.extend.generator.register("feed", (locals) => { const feed = new podcast({ title: config.title, description: config.description, - copyright: theme.copyright, + copyright: config.title + ' ' + theme.copyright, language: config.language.slice(0, 2), siteUrl: config.url, imageUrl: theme.logo.rss, @@ -76,7 +76,6 @@ hexo.extend.generator.register("feed", (locals) => { itunesAuthor: post.podcast.authors.join(', '), itunesExplicit: theme.rss.config.explicit, itunesSubtitle: post.podcast.subtitle, - itunesSummary: hstrip(description), itunesDuration: post.podcast.duration }); }); |