From 47af5064ea51fc6a9e50107fcab02ebea15a2988 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Wed, 15 Jan 2025 22:40:22 +0500 Subject: [PATCH] fix: adding index.json to packs list when generating it 2nd time --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index a2c1700..ca5f339 100644 --- a/src/index.js +++ b/src/index.js @@ -10,7 +10,7 @@ let Packs = []; const dirents = fs.readdirSync(config.stickerPacksDir, { withFileTypes: true }); const files = dirents .filter(dirent => dirent.isFile()) - .filter(dirent => dirent.name.endsWith(".json")) + .filter(dirent => (dirent.name.endsWith(".json") && dirent.name != "index.json")) .map(dirent => dirent.name); if (files.length == 0) { console.error("[ERROR] NO Sticker Packs Found!");