mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-20 13:26:02 +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:
parent
71b7914340
commit
e1b8042f5d
@ -892,7 +892,7 @@ sub km200_PostSingleService($)
|
|||||||
{
|
{
|
||||||
my $TempSetPoint = substr($item->{id}, (rindex($item->{id}, "/") - length($item->{id}) +1));
|
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);
|
push (@TempSetpointNames, $TempSetPoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2429,7 +2429,7 @@ sub km200_ParseHttpResponseInit($)
|
|||||||
|
|
||||||
### Log file entry for debugging
|
### Log file entry for debugging
|
||||||
Log3 $name, 5, $name . " : The ArrayItem is : " . $ArrayItem ;
|
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
|
### Get array from scalar
|
||||||
my %ArrayHash = %{$ArrayItem};
|
my %ArrayHash = %{$ArrayItem};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user