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 64c944c45a
commit 31f2d53f69

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;
}