2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-15 22:26:04 +00:00

fhem.pl: fix Regexp for the multi-io-clientArray patch (Forum #127565)

git-svn-id: https://svn.fhem.de/fhem/trunk@26034 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2022-05-09 09:50:54 +00:00
parent a8e03ab6d7
commit ba7dbfc8c6

View File

@ -2170,7 +2170,7 @@ CommandDefine($$)
$cl = $modules{$ah->{TYPE}}{Clients} if(!$cl);
next if(!$cl || !$ah->{'.clientArray'});
foreach my $cmRe ( split(/:/, $cl) ) {
if($m =~ $cmRe) {
if($m =~ m/^$cmRe$/) {
delete($ah->{'.clientArray'});
last;
}