Increase max attachment size

This commit is contained in:
Cohee 2024-04-23 21:06:59 +03:00
parent 75372ad0cc
commit a421af9ea9
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ import { ScraperManager } from './scrapers.js';
* @returns {Promise<string>} Converted file text * @returns {Promise<string>} Converted file text
*/ */
const fileSizeLimit = 1024 * 1024 * 10; // 10 MB const fileSizeLimit = 1024 * 1024 * 100; // 100 MB
const ATTACHMENT_SOURCE = { const ATTACHMENT_SOURCE = {
GLOBAL: 'global', GLOBAL: 'global',
CHAT: 'chat', CHAT: 'chat',