Merge branch 'ent-6509-agent-details-error-en-conteo-total-de-modulos' into 'develop'

included not init modules in total count

See merge request artica/pandorafms!3645
This commit is contained in:
Daniel Rodriguez 2020-12-22 16:29:39 +01:00
commit b2363fb003
1 changed files with 1 additions and 1 deletions

View File

@ -11339,7 +11339,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,