2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-25 16:05:19 +00:00

98_vitoconnect.pm: Missing update interval after login failure

git-svn-id: https://svn.fhem.de/fhem/trunk@26738 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
mcp 2022-11-23 00:22:25 +00:00
parent 717feb81ba
commit 85268862d9
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # 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. # 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_km200 : Forward declaration made obsolete
- bugfix: 73_ElectricityCalculator : 2nd DST bug, WFR Reading deleted - bugfix: 73_ElectricityCalculator : 2nd DST bug, WFR Reading deleted
- bugfix: 73_GasCalculator : 2nd DST bug, WFR Reading deleted - bugfix: 73_GasCalculator : 2nd DST bug, WFR Reading deleted

View File

@ -1529,6 +1529,8 @@ sub vitoconnect_getCodeCallback {
readingsSingleUpdate( $hash, "state", readingsSingleUpdate( $hash, "state",
"Login failure. Check password and apiKey", 1 ); "Login failure. Check password and apiKey", 1 );
Log3 $name, 1, "$name - Login failure. Check password and apiKey"; Log3 $name, 1, "$name - Login failure. Check password and apiKey";
InternalTimer( gettimeofday() + $hash->{intervall},
"vitoconnect_GetUpdate", $hash ); # Forum: #880
} }
return; return;
} }