2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-16 10:46:03 +00:00

fhem.pl: do not report definition of one-time at as structure change

git-svn-id: https://svn.fhem.de/fhem/trunk@7706 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-01-25 12:42:07 +00:00
parent 1725473539
commit 2cd4704a24

View File

@ -4081,7 +4081,7 @@ addStructChange($$$)
return if(!$init_done);
my ($cmd, $dev, $param) = @_;
return if(!$defs{$dev} || $defs{$dev}{TEMPORARY});
return if(!$defs{$dev} || $defs{$dev}{TEMPORARY} || $defs{$dev}{VOLATILE});
$lastDefChange++;
shift @structChangeHist if(@structChangeHist > 9);