mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-01 01:09:47 +00:00
00_ZWDongle.pm: replace , with space in nodeList/neighborList (Forum #43413)
git-svn-id: https://svn.fhem.de/fhem/trunk@9825 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
7db33170b5
commit
5ae40d3618
@ -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]);
|
||||||
|
@ -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 "";
|
||||||
|
Loading…
Reference in New Issue
Block a user