mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-14 02:23:31 +01:00
fix: ok statusCode can be 200..299 (#7919)
This commit is contained in:
@@ -391,7 +391,7 @@ export class SequentialHandler implements IHandler {
|
||||
}
|
||||
}
|
||||
|
||||
if (status === 200) {
|
||||
if (status >= 200 && status < 300) {
|
||||
return parseResponse(res);
|
||||
} else if (status === 429) {
|
||||
// A rate limit was hit - this may happen if the route isn't associated with an official bucket hash yet, or when first globally rate limited
|
||||
|
||||
Reference in New Issue
Block a user