remove double dewpoint reading

This commit is contained in:
2022-11-25 20:02:39 +01:00
parent fdd6f0964a
commit 43af5222c5

View File

@@ -670,8 +670,7 @@ sub _ProcessingRetrieveData {
) )
), ),
'moon_phase' => $data->{daily}->[$i] 'moon_phase' => $data->{daily}->[$i]
->{moon_phase} ->{moon_phase},
),
'moonset' => strftime( 'moonset' => strftime(
"%a, %H:%M", "%a, %H:%M",
localtime( localtime(
@@ -869,11 +868,10 @@ sub _ProcessingRetrieveData {
), ),
}, },
); );
$i++; $i++;
} }
} }
$self->{cached}->{current}->{dew_point} = $data->{current}->{dew_point}
} }
} }
} }