adjust console alert messaging

This commit is contained in:
Ryan Peters 2023-06-14 03:38:56 +00:00
parent 538eaba37d
commit f49d7e1a25

View File

@ -35,6 +35,6 @@ var todaysForecast = weatherSet.Forecast.FirstOrDefault().Summary;
var notificationResponse = await httpClient.PostAsJsonAsync(gotifyUrl, new var notificationResponse = await httpClient.PostAsJsonAsync(gotifyUrl, new
{ {
title = "Weather Conditions", 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 priority = 5
}); });