Fix
This commit is contained in:
parent
5c0b892e22
commit
a3181e2f4d
1 changed files with 4 additions and 0 deletions
4
index.js
4
index.js
|
@ -45,6 +45,10 @@ if (!fs.existsSync(cachePath)) {
|
|||
fs.mkdirSync(cachePath)
|
||||
}
|
||||
|
||||
if (!fs.existsSync(path.join(cachePath, "emojis"))) {
|
||||
fs.mkdirSync(path.join(cachePath, "emojis"))
|
||||
}
|
||||
|
||||
app.get("/discHTML", (req, res) => {
|
||||
res.send(pageUpdater.getActivities())
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue