fix extended completion done counting
This commit is contained in:
parent
f93c599010
commit
f893787a33
3 changed files with 23 additions and 7 deletions
13
build/app.js
13
build/app.js
|
|
@ -389,9 +389,16 @@ function CheckExtendedCompletion(db) {
|
|||
}
|
||||
}
|
||||
|
||||
if (entries[entry].icon === "green") {
|
||||
intro.extendedCompletionDone++;
|
||||
/* console.info("Counted (Done):", entry); */
|
||||
switch (entries[entry].icon) {
|
||||
case "red":
|
||||
case "none":
|
||||
case "partial":
|
||||
case "partialJournal":
|
||||
break;
|
||||
|
||||
default:
|
||||
intro.extendedCompletionDone++;
|
||||
// console.info("Counted (Done):", entry);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -491,10 +491,19 @@ function CheckExtendedCompletion(db) {
|
|||
}
|
||||
}
|
||||
|
||||
if (entries[entry].icon === "green") {
|
||||
intro.extendedCompletionDone++;
|
||||
switch(entries[entry].icon) {
|
||||
|
||||
/* console.info("Counted (Done):", entry); */
|
||||
case "red":
|
||||
case "none":
|
||||
case "partial":
|
||||
case "partialJournal":
|
||||
break;
|
||||
|
||||
default:
|
||||
|
||||
intro.extendedCompletionDone++;
|
||||
|
||||
// console.info("Counted (Done):", entry);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue