fix: adding index.json to packs list when generating it 2nd time

This commit is contained in:
Kentai Radiquum 2025-01-15 22:40:22 +05:00
parent f491fb69a8
commit 47af5064ea
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -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!");