00_ZWDongle.pm: replace , with space in nodeList/neighborList (Forum #43413)

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@9825 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2015-11-08 14:24:48 +00:00
parent 968f62bc24
commit 92c7a0ff36
2 changed files with 2 additions and 2 deletions

View File

@@ -367,7 +367,7 @@ ZWDongle_Get($@)
push @list, ($l[0] && $defs{$l[0]} ? $l[0] : "UNKNOWN_$idx"); push @list, ($l[0] && $defs{$l[0]} ? $l[0] : "UNKNOWN_$idx");
} }
} }
$msg = join(",", @list); $msg = join(" ", @list);
} elsif($type eq "caps") { ############################ } elsif($type eq "caps") { ############################
$msg = sprintf("Vers:%d Rev:%d ", $r[2], $r[3]); $msg = sprintf("Vers:%d Rev:%d ", $r[2], $r[3]);

View File

@@ -2654,7 +2654,7 @@ ZWave_Parse($$@)
} }
} }
} }
$msg = @list ? join(",", @list) : "empty"; $msg = @list ? join(" ", @list) : "empty";
readingsSingleUpdate($hash, "neighborList", $msg, 1) if($hash); readingsSingleUpdate($hash, "neighborList", $msg, 1) if($hash);
return $msg if($srcCmd); return $msg if($srcCmd);
return ""; return "";