fix: fix outgoing url on error page

also refactor some related code
This commit is contained in:
zyachel 2023-01-15 21:41:09 +05:30
parent 44229f8702
commit 595b720ee1
9 changed files with 32 additions and 35 deletions

View file

@ -43,8 +43,7 @@ const fetcher = async (
return true;
});
if (!rawData || !Object.entries(rawData).length)
throw new AppError("couldn't retrieve data", 500);
if (!rawData) throw new AppError("couldn't retrieve data", 500);
return JSON.parse(rawData);
} catch (err) {