Fix RSS website_origin

This commit is contained in:
Cadence Fish 2020-01-29 23:00:47 +13:00
parent 134af7c21d
commit e3e1e007ed
No known key found for this signature in database
GPG Key ID: 81015DF9AA8607E1
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
const config = require("../../../config")
const constants = require("../constants") const constants = require("../constants")
const {proxyImage, proxyExtendedOwner} = require("../utils/proxyurl") const {proxyImage, proxyExtendedOwner} = require("../utils/proxyurl")
const {compile} = require("pug") const {compile} = require("pug")
@ -211,15 +210,15 @@ class TimelineEntry extends TimelineBaseMethods {
description: rssDescriptionTemplate({ description: rssDescriptionTemplate({
caption: this.getCaption(), caption: this.getCaption(),
children: children.map(child => ({ children: children.map(child => ({
src: `${config.website_origin}${child.getDisplayUrlP()}`, src: `${constants.website_origin}${child.getDisplayUrlP()}`,
alt: child.getAlt(), alt: child.getAlt(),
width: child.data.dimensions.width, width: child.data.dimensions.width,
height: child.data.dimensions.height height: child.data.dimensions.height
})) }))
}), }),
author: this.data.owner.username, author: this.data.owner.username,
url: `${config.website_origin}/p/${this.data.shortcode}`, url: `${constants.website_origin}/p/${this.data.shortcode}`,
guid: `${config.website_origin}/p/${this.data.shortcode}`, // Is it wise to keep the origin in here? The same post would have a different ID from different servers. guid: `${constants.website_origin}/p/${this.data.shortcode}`, // Is it wise to keep the origin in here? The same post would have a different ID from different servers.
date: new Date(this.data.taken_at_timestamp*1000) date: new Date(this.data.taken_at_timestamp*1000)
/* /*
Readers should display the description as HTML rather than using the media enclosure. Readers should display the description as HTML rather than using the media enclosure.