mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Fix missing isQuote passthrough
This commit is contained in:
parent
40a8f7674b
commit
1c7d761d91
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ function paragraphify(text: string, isQuote = false): string {
|
||||||
|
|
||||||
/* TODO: maybe refactor so all tweets pull from this */
|
/* TODO: maybe refactor so all tweets pull from this */
|
||||||
const generateTweet = (tweet: APITweet, isQuote = false): string => {
|
const generateTweet = (tweet: APITweet, isQuote = false): string => {
|
||||||
let text = paragraphify(sanitizeText(tweet.text));
|
let text = paragraphify(sanitizeText(tweet.text), isQuote);
|
||||||
text = htmlifyLinks(text);
|
text = htmlifyLinks(text);
|
||||||
text = htmlifyHashtags(text);
|
text = htmlifyHashtags(text);
|
||||||
text = populateUserLinks(tweet, text);
|
text = populateUserLinks(tweet, text);
|
||||||
|
|
Loading…
Add table
Reference in a new issue