mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Only show View original for non-quotes
This commit is contained in:
parent
d5e5f99b85
commit
5c55fe47b6
1 changed files with 3 additions and 2 deletions
|
@ -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 */
|
||||||
|
|
Loading…
Add table
Reference in a new issue