From 1c7d761d911ebd8e35a82cb59b5d7fc891d58349 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 18 Aug 2023 05:16:47 -0400 Subject: [PATCH] Fix missing isQuote passthrough --- src/render/instantview.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 64a982b..f716aff 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -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);