From 86271a7844494642e0148197dab1029fa0f670e3 Mon Sep 17 00:00:00 2001 From: revelaction <96388231+revelaction@users.noreply.github.com> Date: Wed, 2 Oct 2024 01:54:36 +0200 Subject: [PATCH] feat: add ShowAlarm flag to notification builder --- ical/parse.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ical/parse.go b/ical/parse.go index 58e6f68..b3a9900 100644 --- a/ical/parse.go +++ b/ical/parse.go @@ -200,6 +200,7 @@ func (p *Parser) buildNotification(event *ics.VEvent) notify.Notification { var categories []string n.ShowDate = true + n.ShowAlarm = true for _, p := range event.Properties { if p.IANAToken == string(ics.ComponentPropertyComment) {