mirror of
https://github.com/danbulant/discord.js
synced 2026-07-09 05:00:48 +00:00
typo(RequestHandler): fix spelling of 'requests' (#3196)
Removed the additional "s" to "requessts"
This commit is contained in:
parent
89e27e5071
commit
6be5051f92
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ class RequestHandler {
|
||||||
return this.run();
|
return this.run();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Handle possible malformed requessts
|
// Handle possible malformed requests
|
||||||
try {
|
try {
|
||||||
const data = await parseResponse(res);
|
const data = await parseResponse(res);
|
||||||
if (res.status >= 400 && res.status < 500) {
|
if (res.status >= 400 && res.status < 500) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue