mirror of
https://github.com/wah-su/mstickers.git
synced 2025-04-05 15:54:36 +00:00
fix: adding index.json to packs list when generating it 2nd time
This commit is contained in:
parent
f491fb69a8
commit
47af5064ea
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ let Packs = [];
|
||||||
const dirents = fs.readdirSync(config.stickerPacksDir, { withFileTypes: true });
|
const dirents = fs.readdirSync(config.stickerPacksDir, { withFileTypes: true });
|
||||||
const files = dirents
|
const files = dirents
|
||||||
.filter(dirent => dirent.isFile())
|
.filter(dirent => dirent.isFile())
|
||||||
.filter(dirent => dirent.name.endsWith(".json"))
|
.filter(dirent => (dirent.name.endsWith(".json") && dirent.name != "index.json"))
|
||||||
.map(dirent => dirent.name);
|
.map(dirent => dirent.name);
|
||||||
if (files.length == 0) {
|
if (files.length == 0) {
|
||||||
console.error("[ERROR] NO Sticker Packs Found!");
|
console.error("[ERROR] NO Sticker Packs Found!");
|
||||||
|
|
Loading…
Add table
Reference in a new issue