From dce15366d697aaa4f2a1f2e27c1e05eb4fa87120 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 30 Sep 2020 21:06:07 +0200 Subject: Fixed res.send (LARS IS STILL DUMB) and commented --- motto/index.js | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) (limited to 'motto') diff --git a/motto/index.js b/motto/index.js index 4b39960..77365a8 100644 --- a/motto/index.js +++ b/motto/index.js @@ -11,27 +11,26 @@ const apiLimiter = rateLimit({ message: "Access overflow!", }); -app.get("/sync", (req, res) => { - fs.readFile(__dirname + "/list.txt", "utf8", (err, data) => { - if (err) { - console.error(err); - return res.send("error"); - } - const lines = data.split("\n"); - lines.forEach(async (line) => { - const split = line.split(" - "); - try { - if (split.length >= 2) - await db.query("INSERT INTO theme (main, description) VALUES (?, ?)", split.slice(0, 2)); - else console.log(line); - } catch (e) { - console.error(e); - } finally { - res.send("ok"); - } - }); - }); -}); +//app.get("/sync", (req, res) => { +// fs.readFile(__dirname + "/list.txt", "utf8", (err, data) => { +// if (err) { +// console.error(err); +// return res.send("error"); +// } +// const lines = data.split("\n"); +// lines.forEach(async (line) => { +// const split = line.split(" - "); +// try { +// if (split.length >= 2) +// await db.query("INSERT INTO theme (main, description) VALUES (?, ?)", split.slice(0, 2)); +// else console.log(line); +// } catch (e) { +// console.error(e); +// } +// }); +// res.send("ok"); +// }); +//}); app.use("/", express.static(__dirname + "/public")); -- cgit v1.2.3