mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
fix: fix a bug related to fetcher.js
added optional chaining in catch block as there are edge cases where some property on error might not be defined
This commit is contained in:
parent
d8515d5edd
commit
6ad2269951
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ const fetcher = async resourceStr => {
|
|||
|
||||
return data;
|
||||
} catch (err) {
|
||||
if (err.response.status === 404) throw new AppError('Not found', 404);
|
||||
if (err.response?.status === 404) throw new AppError('Not found', 404);
|
||||
else throw err;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue