mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Fix IV translation showing "undefined"
This commit is contained in:
parent
45ea8fac87
commit
65b7d580bd
1 changed files with 6 additions and 2 deletions
|
@ -302,6 +302,8 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
|
||||||
|
|
||||||
let previousThreadPieceAuthor: string | null = null;
|
let previousThreadPieceAuthor: string | null = null;
|
||||||
let originalAuthor: string | null = null;
|
let originalAuthor: string | null = null;
|
||||||
|
|
||||||
|
const useThread = thread?.thread ?? [ thread?.status ]
|
||||||
|
|
||||||
if (!status) {
|
if (!status) {
|
||||||
throw new Error('Status is undefined');
|
throw new Error('Status is undefined');
|
||||||
|
@ -337,9 +339,11 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
|
||||||
<sub><a href="${status.url}">View full thread</a></sub>
|
<sub><a href="${status.url}">View full thread</a></sub>
|
||||||
<h1>${status.author.name} (@${status.author.screen_name})</h1>
|
<h1>${status.author.name} (@${status.author.screen_name})</h1>
|
||||||
|
|
||||||
${thread?.thread
|
${useThread.map(status => {
|
||||||
?.map(status => {
|
|
||||||
console.log('previousThreadPieceAuthor', previousThreadPieceAuthor);
|
console.log('previousThreadPieceAuthor', previousThreadPieceAuthor);
|
||||||
|
if (!status) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
if (originalAuthor === null) {
|
if (originalAuthor === null) {
|
||||||
originalAuthor = status.author?.id;
|
originalAuthor = status.author?.id;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue