From 65b7d580bdd1cd268fe4bff11eea0c0d4e674082 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 30 Apr 2024 01:49:27 -0400 Subject: [PATCH] Fix IV translation showing "undefined" --- src/render/instantview.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 39735ad..c42dda4 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -302,6 +302,8 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc let previousThreadPieceAuthor: string | null = null; let originalAuthor: string | null = null; + + const useThread = thread?.thread ?? [ thread?.status ] if (!status) { throw new Error('Status is undefined'); @@ -337,9 +339,11 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc View full thread

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

- ${thread?.thread - ?.map(status => { + ${useThread.map(status => { console.log('previousThreadPieceAuthor', previousThreadPieceAuthor); + if (!status) { + return ''; + } if (originalAuthor === null) { originalAuthor = status.author?.id; }