From 85268862d9f59251a4eb9c6ab196aac924fc2eb7 Mon Sep 17 00:00:00 2001 From: mcp <> Date: Wed, 23 Nov 2022 00:22:25 +0000 Subject: [PATCH] 98_vitoconnect.pm: Missing update interval after login failure git-svn-id: https://svn.fhem.de/fhem/trunk@26738 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/98_vitoconnect.pm | 2 ++ 2 files changed, 3 insertions(+) diff --git a/fhem/CHANGED b/fhem/CHANGED index 0e18533a4..a128e013e 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: 98_vitoconnect: Missing update interval after login failure - bugfix: 73_km200 : Forward declaration made obsolete - bugfix: 73_ElectricityCalculator : 2nd DST bug, WFR Reading deleted - bugfix: 73_GasCalculator : 2nd DST bug, WFR Reading deleted diff --git a/fhem/FHEM/98_vitoconnect.pm b/fhem/FHEM/98_vitoconnect.pm index cf2274d24..d40aaf474 100644 --- a/fhem/FHEM/98_vitoconnect.pm +++ b/fhem/FHEM/98_vitoconnect.pm @@ -1529,6 +1529,8 @@ sub vitoconnect_getCodeCallback { readingsSingleUpdate( $hash, "state", "Login failure. Check password and apiKey", 1 ); Log3 $name, 1, "$name - Login failure. Check password and apiKey"; + InternalTimer( gettimeofday() + $hash->{intervall}, + "vitoconnect_GetUpdate", $hash ); # Forum: #880 } return; }