new sticker limit

This commit is contained in:
synt-xerror
2026-03-16 22:23:35 -03:00
parent 4f5d937265
commit 5b74cf2dc5
2 changed files with 3 additions and 3 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "whatsapp-bot",
"version": "2.3.2",
"version": "2.3.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "whatsapp-bot",
"version": "2.3.2",
"version": "2.3.3",
"dependencies": {
"node-addon-api": "^7",
"node-gyp": "^12.2.0",

View File

@@ -21,7 +21,7 @@ const DOWNLOADS_DIR = path.resolve("downloads");
const FFMPEG = os.platform() === "win32" ? ".\\bin\\ffmpeg.exe" : "./bin/ffmpeg";
const MAX_STICKER_SIZE = 900 * 1024;
const SESSION_TIMEOUT = 2 * 60 * 1000;
const MAX_MEDIA = 10;
const MAX_MEDIA = 30;
// ── Helpers ───────────────────────────────────────────────────
function ensureDownloadsDir() {