mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-13 18:13:29 +01:00
fix(builders): handle 0 as valid attachment ID (#11330)
* fix(builders): handle 0 as valid attachment ID Fixes #11314 The AttachmentBuilder.getRawFile() method was using a falsy check that treated 0 as invalid. Changed to use the 'in' operator to properly check for the existence of the id property. * Update packages/builders/__tests__/messages/fileBody.test.ts Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> * Apply suggestion from @almeidx * fix: lint --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> Co-authored-by: Almeida <github@almeidx.dev> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
@@ -153,7 +153,7 @@ export class AttachmentBuilder implements JSONEncodable<RESTAPIAttachment> {
|
||||
return {
|
||||
...this.fileData,
|
||||
name: this.data.filename,
|
||||
key: this.data.id ? `files[${this.data.id}]` : undefined,
|
||||
key: this.data.id === undefined ? undefined : `files[${this.data.id}]`,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user