Add request data to error

This commit is contained in:
Helloyunho 2021-02-23 12:09:38 +09:00
parent d5a8207690
commit de089ce610
1 changed files with 6 additions and 2 deletions

View File

@ -37,6 +37,7 @@ export interface DiscordAPIErrorPayload {
code?: number code?: number
message?: string message?: string
errors: object errors: object
requestData: { [key: string]: any }
} }
export class DiscordAPIError extends Error { export class DiscordAPIError extends Error {
@ -319,7 +320,9 @@ export class RESTManager {
} }
} }
const form = new FormData() const form = new FormData()
files.forEach((file, index) => form.append(`file${index + 1}`, file.blob, file.name)) files.forEach((file, index) =>
form.append(`file${index + 1}`, file.blob, file.name)
)
const json = JSON.stringify(body) const json = JSON.stringify(body)
form.append('payload_json', json) form.append('payload_json', json)
if (body === undefined) body = {} if (body === undefined) body = {}
@ -465,7 +468,8 @@ export class RESTManager {
).map((entry) => { ).map((entry) => {
return [entry[0], entry[1]._errors ?? []] return [entry[0], entry[1]._errors ?? []]
}) })
) ),
requestData: data
} }
// if (typeof error.errors === 'object') { // if (typeof error.errors === 'object') {