We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6d8e5 commit 63e26b3Copy full SHA for 63e26b3
plugins/reports/api/reports.js
@@ -182,7 +182,7 @@ var metrics = {
182
output.correction = fetch.formatTotalUsersObj(dbTotalUsersObj);
183
output.prev_correction = fetch.formatTotalUsersObj(dbTotalUsersObj, true);
184
done2(null, {metric: metric, data: output});
185
- });1
+ });
186
});
187
}
188
@@ -309,7 +309,7 @@ var metrics = {
309
for (var j in results[i].results) {
310
if (j === "users") {
311
results[i].results[j] = getSessionData(
312
- results[i].results[j] || {},
+ results[i].results[j] || {},
313
(results[i].results[j] && results[i].results[j].correction) ? results[i].results[j].correction : {},
314
(results[i].results[j] && results[i].results[j].prev_correction) ? results[i].results[j].prev_correction : {}
315
);
0 commit comments