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

73_km200.pm: Bugfix-Experimental keys on scalar is now forbidden

git-svn-id: https://svn.fhem.de/fhem/trunk@12391 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
sailor-fhem 2016-10-21 07:02:31 +00:00
parent 71b7914340
commit e1b8042f5d

View File

@ -892,7 +892,7 @@ sub km200_PostSingleService($)
{
my $TempSetPoint = substr($item->{id}, (rindex($item->{id}, "/") - length($item->{id}) +1));
### Add service to the list of all known services
### Add service, which is one of the allowed terminologies at the same time, to the list of all known services
push (@TempSetpointNames, $TempSetPoint);
}
@ -2429,7 +2429,7 @@ sub km200_ParseHttpResponseInit($)
### Log file entry for debugging
Log3 $name, 5, $name . " : The ArrayItem is : " . $ArrayItem ;
Log3 $name, 5, $name . " : The keys ArrayItem is : " . (keys $ArrayItem) ;
Log3 $name, 5, $name . " : The keys ArrayItem is : " . (keys %{$ArrayItem}) ;
### Get array from scalar
my %ArrayHash = %{$ArrayItem};