fix(fetcher): send correct error response when a malinformed answer url is accessed

This commit is contained in:
zyachel 2022-05-24 13:14:47 +05:30
parent b11ceb4c33
commit a9ae36e264

View file

@ -2,6 +2,7 @@
// IMPORTS
////////////////////////////////////////////////////////
// import log from '../utils/log.js';
import AppError from '../utils/AppError.js';
import fetcher from './fetcher.js';
////////////////////////////////////////////////////////
@ -16,6 +17,12 @@ const getAnswers = async slug => {
data: { question: rawData },
} = JSON.parse(res);
if (!rawData)
throw new AppError(
"Couldn't find such an answer. Maybe check the URL?",
400
);
// array containing all the answers with metadata
const ansArr = rawData.pagedListDataConnection.edges
.filter(ansObj => ansObj.node.answer !== undefined)