mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
fix: fix errors in fetchers
This commit is contained in:
parent
14eece71a6
commit
b9d65e89f0
3 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 },
|
||||
|
|
|
@ -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 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue