diff options
author | Joel Kronqvist <work.joelkronqvist@gmail.com> | 2022-10-20 19:46:26 +0300 |
---|---|---|
committer | Joel Kronqvist <work.joelkronqvist@gmail.com> | 2022-10-20 19:46:26 +0300 |
commit | a760ac4091d400b2ae1f461550eed5004b444844 (patch) | |
tree | eb4f36d8c7754d23a4851ad7bbeb0ec2c0f8e164 /dbparse.js | |
parent | c28fe49a7a303ef0440ccffd830e4949a1f2381f (diff) | |
download | LYLLRuoka-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.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++) { |