From 293a8b8fd86f424fcf74d9ad4680d6aec529d678 Mon Sep 17 00:00:00 2001 From: Elysia <71698422+aiko-chan-ai@users.noreply.github.com> Date: Tue, 17 Sep 2024 17:16:52 +0700 Subject: [PATCH] docs(Attachment): add MIME types link to contentType backport 9824 --- src/structures/MessageAttachment.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/structures/MessageAttachment.js b/src/structures/MessageAttachment.js index bf5f345..b8977b8 100644 --- a/src/structures/MessageAttachment.js +++ b/src/structures/MessageAttachment.js @@ -125,8 +125,9 @@ class MessageAttachment { if ('content_type' in data) { /** - * The media type of this attachment + * The media (MIME) type of this attachment * @type {?string} + * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types} */ this.contentType = data.content_type; } else {