From c89717076b40adcf3c195703060f33e395f14d01 Mon Sep 17 00:00:00 2001 From: Walamana Date: Tue, 5 Dec 2017 15:33:16 +0100 Subject: [PATCH] typo Signed-off-by: Walamana --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index eb88d92..74c1bec 100644 --- a/app.js +++ b/app.js @@ -114,7 +114,7 @@ app.get("/gottesdienste/:groupid", (req, res) => { }); app.get("/groups", (req, res) => { - con.query("SELECT * from gottesdienstgruppe ORDER BY `gottesdienstgruppe`.`ID` DESC LIMIT 0, 5", (err, result) => { + con.query("SELECT * from gottesdienstGruppe ORDER BY `gottesdienstgruppe`.`ID` DESC LIMIT 0, 5", (err, result) => { if (err) throw err; res.send(JSON.stringify(result)); });