From f49d7e1a25cf9ee788e3561f83f4a5a57cf16c4a Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 14 Jun 2023 03:38:56 +0000 Subject: [PATCH] adjust console alert messaging --- WeatherDashboard.Console/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeatherDashboard.Console/Program.cs b/WeatherDashboard.Console/Program.cs index ec8259e..a790a8c 100644 --- a/WeatherDashboard.Console/Program.cs +++ b/WeatherDashboard.Console/Program.cs @@ -35,6 +35,6 @@ var todaysForecast = weatherSet.Forecast.FirstOrDefault().Summary; var notificationResponse = await httpClient.PostAsJsonAsync(gotifyUrl, new { title = "Weather Conditions", - message = $"Today will be {todaysForecast.ConditionName} a high of {todaysForecast.HighTemp} and a low of {todaysForecast.LowTemp}. Currently, it is {weatherSet.Current.ConditionName} and {weatherSet.Current.Temperature} degrees.", + message = $"Today: {todaysForecast.ConditionName} with a high of {todaysForecast.HighTemp} and a low of {todaysForecast.LowTemp}. Currently: {weatherSet.Current.ConditionName} and {weatherSet.Current.Temperature} degrees.", priority = 5 }); \ No newline at end of file