fix: fix errors in fetchers

This commit is contained in:
zyachel 2022-06-12 12:49:08 +05:30
parent 14eece71a6
commit b9d65e89f0
3 changed files with 2 additions and 3 deletions

View file

@ -34,7 +34,8 @@ const fetcher = async resourceStr => {
.html()
?.match(/"\{.*\}"/m)?.[0];
});
if (!rawData) throw new Error("couldn't retrieve data");
if (!rawData || !Object.entries(rawData).length)
throw new AppError("couldn't retrieve data", 500);
const data = JSON.parse(rawData);

View file

@ -11,7 +11,6 @@ import fetcher from './fetcher.js';
const getAnswers = async slug => {
// getting data and destructuring it in case it exists
const res = await fetcher(slug);
if (!Object.entries(res).length) throw new Error('no data received!');
const {
data: { question: rawData },

View file

@ -10,7 +10,6 @@ import fetcher from './fetcher.js';
const getTopic = async slug => {
// getting data and destructuring it in case it exists, else throwing an error
const res = await fetcher(`topic/${slug}`);
if (!Object.entries(res).length) throw new Error('no data received!');
const {
data: { topic: rawData },