2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-08 05:15:10 +00:00

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 a7fefe886b
commit c0c0f23310

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