mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
fix(answers): fix answers route crashing
this commit fixes the crash that was caused by change in a couple of properties from upstream BREAKING CHANGE: old fetcher may or may not work fix: https://github.com/zyachel/quetre/issues/101
This commit is contained in:
parent
0ebaec7065
commit
b8a0b9fcad
1 changed files with 5 additions and 2 deletions
|
@ -38,13 +38,16 @@ const answersFetcher = async (resourceStr, lang) => {
|
|||
rawData.question = matchedPart.question;
|
||||
|
||||
// primary answer block
|
||||
} else if (matchedPart.question?.answers?.edges) {
|
||||
} else if (
|
||||
matchedPart.question?.answers?.edges &&
|
||||
matchedPart.question.answers.edges[0].node.answer.content
|
||||
) {
|
||||
rawData.answers.push(matchedPart.question.answers.edges[0].node.answer);
|
||||
|
||||
// other answer blocks
|
||||
} else if (
|
||||
// eslint-disable-next-line no-underscore-dangle
|
||||
matchedPart.node?.__typename === 'QuestionRelevantAnswerItem2'
|
||||
matchedPart.node?.__typename === 'QuestionAnswerItem2'
|
||||
) {
|
||||
rawData.answers.push(matchedPart.node.answer);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue