Zerlegen des statusRequest-Strings neu geschrieben

This commit is contained in:
Marko Oldenburg 2015-11-30 17:40:55 +01:00
parent c20580e674
commit 66593156de

View File

@ -334,15 +334,11 @@ sub HOMEBOT_Parse_HomebotInfomations($$$) {
my @valuestring = split( '=', $data );
printf "\n\nfirstSplit\n@valuestring\n\n";
my @valuestring = split( '\R', $data );
my %buffer;
foreach( @valuestring ) {
my @values = split( '"' , $_ );
my @values = split( '="' , $_ );
$buffer{$values[0]} = $values[1];
}