aboutsummaryrefslogtreecommitdiff
path: root/dbparse.js
diff options
context:
space:
mode:
authorJoel Kronqvist <work.joelkronqvist@gmail.com>2022-10-20 19:46:26 +0300
committerJoel Kronqvist <work.joelkronqvist@gmail.com>2022-10-20 19:46:26 +0300
commita760ac4091d400b2ae1f461550eed5004b444844 (patch)
treeeb4f36d8c7754d23a4851ad7bbeb0ec2c0f8e164 /dbparse.js
parentc28fe49a7a303ef0440ccffd830e4949a1f2381f (diff)
downloadLYLLRuoka-a760ac4091d400b2ae1f461550eed5004b444844.tar.gz
LYLLRuoka-a760ac4091d400b2ae1f461550eed5004b444844.zip
Made vegetarian food empty when not found. Had become visible in commit 'Bug fixes & started setup.sh'
Diffstat (limited to 'dbparse.js')
-rw-r--r--dbparse.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbparse.js b/dbparse.js
index eddfdc8..a65add0 100644
--- a/dbparse.js
+++ b/dbparse.js
@@ -180,7 +180,7 @@ async function getRandomIndex(day, DB, depth=0)
let indexes = await DB.execute("SELECT course, teacher, class FROM shifts WHERE day = ? ORDER BY RAND() LIMIT 1", [day]);
- indexes = Object.values(indexes[0] || [null, null, null]); /// ERROR HERE!!!
+ indexes = Object.values(indexes[0] || [null, null, null]);
let start = randInt(0, indexes.length);
for (let test = 0; test < 3; test++)
{