From c022db46162dd57bce95ed13b97087cddddc0c7b Mon Sep 17 00:00:00 2001 From: mrfry Date: Thu, 8 Oct 2020 16:54:29 +0200 Subject: [PATCH] idstats fix --- src/utils/ids.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/ids.js b/src/utils/ids.js index 4783574..e8a253b 100755 --- a/src/utils/ids.js +++ b/src/utils/ids.js @@ -76,7 +76,7 @@ function Inc(value, subj, newQuestions, allQuestions) { data[value] = { count: 0, newQuestions: 0, - allQLength: 0, + allQuestions: 0, subjs: {}, } } @@ -101,7 +101,7 @@ function AddVisitStat(name, subj, newQuestions, allQuestions) { vData[now][name] = { count: 0, newQuestions: 0, - allQLength: 0, + allQuestions: 0, subjs: {}, } }