mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 04:57:37 +03:00
fix(fetcher): fix answers route crashing in case there aren't any answers
This commit is contained in:
parent
4cd551438b
commit
c6c4828422
1 changed files with 1 additions and 4 deletions
|
@ -38,10 +38,7 @@ const answersFetcher = async (resourceStr, lang) => {
|
|||
rawData.question = matchedPart.question;
|
||||
|
||||
// primary answer block
|
||||
} else if (
|
||||
matchedPart.question?.answers?.edges &&
|
||||
matchedPart.question.answers.edges[0].node.answer.content
|
||||
) {
|
||||
} else if (matchedPart.question?.answers?.edges?.[0].node.answer?.content) {
|
||||
rawData.answers.push(matchedPart.question.answers.edges[0].node.answer);
|
||||
|
||||
// other answer blocks
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue