Fix date formatting in the SPC alert digest lines

This commit is contained in:
2026-06-16 22:07:36 -05:00
parent 3900b3313b
commit 21e97f5d4e
2 changed files with 3 additions and 3 deletions

View File

@@ -120,8 +120,8 @@ func spcConvectiveOutlookRiskDigest(outlooks []weatherdata.ConvectiveOutlook, re
records = append(records, SPCConvectiveOutlookDigest{
LabelText: outlook.LabelText,
RiskLabel: spcRiskDigestLabel(outlook.LabelText),
PeriodBegins: friendlyPeriodBeginsLabel(outlookPeriod, timezone),
PeriodEnds: friendlyPeriodEndsLabel(outlookPeriod, timezone),
PeriodBegins: friendlyMonthDayTimeLabel(outlookPeriod.Start, timezone),
PeriodEnds: friendlyMonthDayTimeLabel(outlookPeriod.End, timezone),
})
}
return records