From 791f58e1308a12e5e4c8e2180fe28bd104602876 Mon Sep 17 00:00:00 2001 From: Souji Date: Tue, 19 Jun 2018 20:09:55 +0200 Subject: [PATCH] docs: add video to MessageAttachment properties (#2608) --- src/structures/MessageAttachment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/MessageAttachment.js b/src/structures/MessageAttachment.js index fcb82d7a4..29f730764 100644 --- a/src/structures/MessageAttachment.js +++ b/src/structures/MessageAttachment.js @@ -99,13 +99,13 @@ class MessageAttachment { this.proxyURL = data.proxy_url; /** - * The height of this attachment (if an image) + * The height of this attachment (if an image or video) * @type {?number} */ this.height = data.height; /** - * The width of this attachment (if an image) + * The width of this attachment (if an image or video) * @type {?number} */ this.width = data.width;