2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-22 20:24:36 +00:00

fhem.pl: configDb, avoid loading 99-er modules twice

git-svn-id: https://svn.fhem.de/fhem/trunk@5704 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-04-30 10:25:31 +00:00
parent 011369fcc4
commit b7ab5b9725

View File

@ -2115,7 +2115,7 @@ GlobalAttr($$$$)
if(configDBUsed()) {
my @dbList = split(/,/,cfgDB_Read99()); # retrieve filelist from configDB
foreach my $m (@dbList) {
CommandReload(undef, $m);
CommandReload(undef, $m) if(!$modules{$2}{$m});
$counter++;
}
}