2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

98_Twilight: second fix for issue #55583

git-svn-id: https://svn.fhem.de/fhem/trunk@11808 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
dietmar63 2016-07-17 16:19:01 +00:00
parent 7c63f03e86
commit d604381ec3

View File

@ -412,11 +412,9 @@ sub Twilight_WeatherCallback(@) {
$result = undef;
} else {
Log3 $hash, 4, "[$hash->{NAME}] got weather info from yahoo for $hash->{WEATHER}";
Log3 $hash, 4, "[$hash->{NAME}] answer=$result" if defined $result;
}
Log3 $hash, 4, "[$hash->{NAME}] answer=$result";
Twilight_getWeatherHorizon($hash, $result);
#$hash->{CONDITION} = 50;
if ($hash->{CONDITION} == 50 && $hash->{VERSUCHE} <= 10) {
$hash->{VERSUCHE} += 1;
@ -424,6 +422,7 @@ sub Twilight_WeatherCallback(@) {
return;
}
Twilight_getWeatherHorizon($hash, $result);
Twilight_TwilightTimes ($hash, $param->{mode}, $result);
Log3 $hash, 3, "[$hash->{NAME}] " . ($hash->{VERSUCHE}+1) . " attempt(s) needed to get valid weather data from yahoo" if ($hash->{CONDITION} != 50 && $hash->{VERSUCHE} > 0);