mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 14:19:11 +02:00
Doesn't need to be async
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ class ImageArgumentType extends ArgumentType {
|
|||||||
super(client, 'image');
|
super(client, 'image');
|
||||||
}
|
}
|
||||||
|
|
||||||
async validate(value, msg) {
|
validate(value, msg) {
|
||||||
const attachment = msg.attachments.first();
|
const attachment = msg.attachments.first();
|
||||||
if (!attachment || !attachment.height || !attachment.width) return false;
|
if (!attachment || !attachment.height || !attachment.width) return false;
|
||||||
if (attachment.size > 8e+6) return 'Please provide an image under 8 MB.';
|
if (attachment.size > 8e+6) return 'Please provide an image under 8 MB.';
|
||||||
|
|||||||
Reference in New Issue
Block a user