mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
fix "RSSLinkPointsTo" setting
This commit is contained in:
parent
1469c3a13d
commit
2d358a6de2
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ servePostRSS = function (terms, url) {
|
||||||
author: post.author,
|
author: post.author,
|
||||||
date: post.postedAt,
|
date: post.postedAt,
|
||||||
guid: post._id,
|
guid: post._id,
|
||||||
url: Posts.getShareableLink(post)
|
url: (Settings.get("RSSLinksPointTo", "link") === "link") ? Posts.getLink(post) : Posts.getPageUrl(post, true)
|
||||||
};
|
};
|
||||||
|
|
||||||
if (post.thumbnailUrl) {
|
if (post.thumbnailUrl) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue