mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
fix: fix outgoing url on error page
also refactor some related code
This commit is contained in:
parent
44229f8702
commit
595b720ee1
9 changed files with 32 additions and 35 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue