included not init modules in total count

This commit is contained in:
alejandro-campos 2020-11-24 16:13:28 +01:00
parent 42c0596aad
commit e2bdb4858a
1 changed files with 1 additions and 1 deletions

View File

@ -10688,7 +10688,7 @@ function reporting_tiny_stats(
if (isset($counts_info['total_count'])) {
$not_init = isset($counts_info['notinit_count']) ? $counts_info['notinit_count'] : 0;
$total_count = ($counts_info['total_count'] - $not_init);
$total_count = $counts_info['total_count'];
$stats[] = [
'name' => 'total_count',
'count' => $total_count,