Fix missing isQuote passthrough

This commit is contained in:
dangered wolf 2023-08-18 05:16:47 -04:00
parent 40a8f7674b
commit 1c7d761d91
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -70,7 +70,7 @@ function paragraphify(text: string, isQuote = false): string {
/* TODO: maybe refactor so all tweets pull from this */
const generateTweet = (tweet: APITweet, isQuote = false): string => {
let text = paragraphify(sanitizeText(tweet.text));
let text = paragraphify(sanitizeText(tweet.text), isQuote);
text = htmlifyLinks(text);
text = htmlifyHashtags(text);
text = populateUserLinks(tweet, text);