diff --git a/package.json b/package.json index 2e58e963..2a05008f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "65.3.1", + "version": "65.3.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { diff --git a/types/image.js b/types/image.js index d6a9943c..a65b4fdc 100644 --- a/types/image.js +++ b/types/image.js @@ -12,7 +12,7 @@ class ImageArgumentType extends ArgumentType { return valid; } if (!attachment.height || !attachment.width) return false; - if (attachment.size > 2e+6) return false; + if (attachment.size > 1000000) return false; return true; }