mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 05:27:36 +03:00
fix(fetcher): send correct error response when a malinformed answer url is accessed
This commit is contained in:
parent
b11ceb4c33
commit
a9ae36e264
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue