2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 04:36:36 +00:00

statistics2.cgi: fix knx counter

git-svn-id: https://svn.fhem.de/fhem/trunk@14803 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2017-07-27 18:04:36 +00:00
parent 3a68cf88ba
commit c97af64acb

View File

@ -227,7 +227,7 @@ sub doAggregate() {
while ( my ($model, $count) = each( %{$decoded->{$type}}) ) {
next if($model eq "noModel");
$countAll{'modules'}{$type}{'definitions'} += $count;
next if(ref($model) eq "HASH");
next if($model =~ /HASH\(/ || $model =~ /disabling/);
next if($model eq "migratedData");
$countAll{'models'}{$type}{$model}{'installations'} += 1;
$countAll{'models'}{$type}{$model}{'definitions'} += $count;