mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
fix: send appropriate response in case Quora rate limits the instance
This commit is contained in:
parent
c0b89ba2c3
commit
e8a51f6224
1 changed files with 5 additions and 0 deletions
|
@ -41,6 +41,11 @@ const fetcher = async resourceStr => {
|
|||
return data;
|
||||
} catch (err) {
|
||||
if (err.response?.status === 404) throw new AppError('Not found', 404);
|
||||
else if (err.response?.status === 429)
|
||||
throw new AppError(
|
||||
'Quora is rate limiting this instance. Consider hosting your own. Instructions are at Github',
|
||||
503
|
||||
);
|
||||
else throw err;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue