This commit is contained in:
bingus_violet 2024-06-08 19:16:44 -05:00
parent 5c0b892e22
commit a3181e2f4d

View file

@ -45,6 +45,10 @@ if (!fs.existsSync(cachePath)) {
fs.mkdirSync(cachePath) fs.mkdirSync(cachePath)
} }
if (!fs.existsSync(path.join(cachePath, "emojis"))) {
fs.mkdirSync(path.join(cachePath, "emojis"))
}
app.get("/discHTML", (req, res) => { app.get("/discHTML", (req, res) => {
res.send(pageUpdater.getActivities()) res.send(pageUpdater.getActivities())
}) })