Skip to content
Snippets Groups Projects
Commit 6f8ff885 authored by Leon's avatar Leon
Browse files

Bugfix: Always generate n questions instead of n-1

parent f6da5187
Branches master
No related tags found
No related merge requests found
......@@ -237,7 +237,7 @@ function constructQuestion(data) {
}
function getNextQuestion() {
if ((dataset.a + 1) >= dataset.m) {
if ((dataset.a + 1) > dataset.m) {
evaluate();
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment