From 5b0c47dba71f526d490aa2e637986983e8245e5c Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 30 Apr 2024 21:41:14 -0400 Subject: [PATCH] Fix bug in instant view when quoting another person --- 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 280925b..238dd8c 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -290,7 +290,7 @@ const generateStatus = ( ${!isQuote && status.quote ? generateStatus(status.quote, author, true, null) : notApplicableComment} `.format({ quoteHeader: isQuote - ? `

Quoting ${author.name} (@${author.screen_name})

` + ? `

Quoting ${status.author.name} (@${status.author.screen_name})

` : '' }); };