Skip to content

Commit 3b14ac9

Browse files
committed
BrightSky: use correct start date
1 parent 626f9ba commit 3b14ac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SimpleWeather.Weather-API/BrightSky/WeatherAlerts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static WeatherAlert CreateWeatherAlert(this BrightSkyProvider _, Alert al
2929
var alert = new WeatherAlert();
3030

3131
alert.Attribution = "DWD";
32-
alert.Date = alertItem.effective;
32+
alert.Date = alertItem.onset;
3333
alert.ExpiresDate = alertItem.expires ?? alertItem.onset.AddDays(1);
3434
alert.Severity = alertItem.severity switch
3535
{

0 commit comments

Comments
 (0)