Typo fix, new question log color is now blue

This commit is contained in:
MrFry 2020-04-01 13:17:25 +02:00
parent 52778532dc
commit 9d19ca554a
3 changed files with 3 additions and 3 deletions

View file

@ -343,7 +343,7 @@ exports.dailyAction = () => {
utils.AppendToFile(JSON.stringify({
date: new Date(),
subjectCount: data.Subjects.length,
questionCOunt: data.Subjects.reduce((acc, subj) => {
questionCount: data.Subjects.reduce((acc, subj) => {
return acc + subj.Questions.length
}, 0)
}), dailyDataCountFile)