From afe79fd4edd0f62e92be24db59c8e8afbc23766e Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Sat, 7 Sep 2024 22:07:32 +0100 Subject: [PATCH] [FIX] Missing curly brace --- calendar.go | 1 + 1 file changed, 1 insertion(+) diff --git a/calendar.go b/calendar.go index 60b310b..93bfc81 100644 --- a/calendar.go +++ b/calendar.go @@ -217,6 +217,7 @@ func (filter Filter) transformEvent(event *ics.VEvent) { event.SetLocation("") } else if filter.Transform.Location.Replace != "" { event.SetLocation(filter.Transform.Location.Replace) + } // URL transformations if filter.Transform.Url.Remove {