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; }