From 28a012c654ce2d06fd108eee467c4ba6dd0b12bb Mon Sep 17 00:00:00 2001 From: nasseeder1 Date: Sun, 3 Mar 2024 21:19:10 +0000 Subject: [PATCH] 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 --- fhem/CHANGED | 1 + fhem/FHEM/93_DbRep.pm | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index d75c8da17..1c8154d54 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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 diff --git a/fhem/FHEM/93_DbRep.pm b/fhem/FHEM/93_DbRep.pm index 8fbbc6dde..71da438bc 100644 --- a/fhem/FHEM/93_DbRep.pm +++ b/fhem/FHEM/93_DbRep.pm @@ -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; }