mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +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:
parent
3a68cf88ba
commit
c97af64acb
@ -227,7 +227,7 @@ sub doAggregate() {
|
|||||||
while ( my ($model, $count) = each( %{$decoded->{$type}}) ) {
|
while ( my ($model, $count) = each( %{$decoded->{$type}}) ) {
|
||||||
next if($model eq "noModel");
|
next if($model eq "noModel");
|
||||||
$countAll{'modules'}{$type}{'definitions'} += $count;
|
$countAll{'modules'}{$type}{'definitions'} += $count;
|
||||||
next if(ref($model) eq "HASH");
|
next if($model =~ /HASH\(/ || $model =~ /disabling/);
|
||||||
next if($model eq "migratedData");
|
next if($model eq "migratedData");
|
||||||
$countAll{'models'}{$type}{$model}{'installations'} += 1;
|
$countAll{'models'}{$type}{$model}{'installations'} += 1;
|
||||||
$countAll{'models'}{$type}{$model}{'definitions'} += $count;
|
$countAll{'models'}{$type}{$model}{'definitions'} += $count;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user