Files
discordeno/packages/plugins/validations/src/attachments.ts
2022-12-01 18:40:01 +08:00

10 lines
374 B
TypeScript

import { Attachment, Bot } from '../deps.js'
export function validateAttachments (bot: Bot, attachments: Attachment[]) {
attachments.forEach((attachment) => {
if (attachment.description && !bot.utils.validateLength(attachment.description, { min: 0, max: 1024 })) {
throw new Error('Attachment description length must be less than 1024 characters')
}
})
}