HMInfo: ignore "none" in IOgrp check for checkConfig

git-svn-id: https://svn.fhem.de/fhem/trunk@24321 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876
2021-04-24 08:07:16 +00:00
parent b7d12ba8fe
commit b3e3ea9492

View File

@@ -761,7 +761,7 @@ sub HMinfo_paramCheck(@) { ####################################################
$ioHmId = $defs{$ioCCU}{DEF};
if ($prefIO){
my @pIOa = split(",",$prefIO);
push @perfIoUndef,"$eName:\t ->$_" foreach ( grep {!$defs{$_}} @pIOa);
push @perfIoUndef,"$eName:\t ->$_" foreach ( grep {!$defs{$_}} grep !/^none$/,@pIOa);
}
}
}