fix: send appropriate response in case Quora rate limits the instance

This commit is contained in:
zyachel 2022-05-23 18:09:35 +05:30
parent c0b89ba2c3
commit e8a51f6224

View file

@ -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;
}
};