Only show View original for non-quotes

This commit is contained in:
dangered wolf 2023-08-18 04:29:20 -04:00
parent d5e5f99b85
commit 5c55fe47b6
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -83,11 +83,12 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
${isQuote ? '</blockquote>' : ''} ${isQuote ? '</blockquote>' : ''}
${generateTweetMedia(tweet)} ${generateTweetMedia(tweet)}
${(!isQuote && tweet.quote) ? generateTweet(tweet.quote, true) : ''} ${(!isQuote && tweet.quote) ? generateTweet(tweet.quote, true) : ''}
<a href="${tweet.url}">View original</a>` <br>${(!isQuote ? `<a href="${tweet.url}">View original</a>` : '')}
`
} }
export const renderInstantView = (properties: RenderProperties): ResponseInstructions => { export const renderInstantView = (properties: RenderProperties): ResponseInstructions => {
console.log('Generating Instant View (placeholder)...'); console.log('Generating Instant View...');
const { tweet } = properties; const { tweet } = properties;
const instructions: ResponseInstructions = { addHeaders: [] }; const instructions: ResponseInstructions = { addHeaders: [] };
/* Use ISO date for Medium template */ /* Use ISO date for Medium template */