2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-08 13:24:56 +00:00

93_DbRep: execute next nextMultiCmd even if time check got failed

git-svn-id: https://svn.fhem.de/fhem/trunk@28590 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2024-03-03 21:19:10 +00:00
parent bd3cafbc5e
commit 28a012c654
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- bugfix: 93_DbRep: execute next nextMultiCmd even if time check got failed
- bugfix: 73_DoorBird: META.json data corrected
- feature: 76_SolarForecast: save/restore relevant readings AND attributes
with plantConfig, visual LED display whether the

View File

@ -59,6 +59,8 @@ no if $] >= 5.017011, warnings => 'experimental::smartmatch';
# Version History intern
my %DbRep_vNotesIntern = (
"8.53.2" => "02.03.2024 delEntries, reduceLog: execute next DbRep_nextMultiCmd even if time check got failed ".
"Forum:https://forum.fhem.de/index.php?msg=1305266 ",
"8.53.1" => "16.02.2024 sqlCmd: executing ckey:latest possible ",
"8.53.0" => "10.01.2024 new setter multiCmd, change DbRep_autoForward, fix reducelog problem Forum:#136581 ",
"8.52.15" => "08.12.2023 fix use fhem default variables in attr executeBeforeProc/executeAfterProc ".
@ -2617,7 +2619,8 @@ sub DbRep_Main {
if (!$valid) {
Log3 ($name, 2, "DbRep $name - ERROR - $cause");
DbRep_delHashtags ($hash);
DbRep_delHashtags ($hash);
DbRep_nextMultiCmd ($name); # nächstes multiCmd ausführen falls gesetzt
return;
}