aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/ical/service.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/ical/service.go')
-rw-r--r--pkg/ical/service.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/ical/service.go b/pkg/ical/service.go
index e6d50d8..a90183f 100644
--- a/pkg/ical/service.go
+++ b/pkg/ical/service.go
@@ -64,7 +64,7 @@ func (s *service) GenerateIcalForCalendar(calendar sqlc.Calendar) (string, error
ret += "DTSTART:" + utcStart.Format("20060102T150405Z") + "\n"
ret += "DTEND:" + utcEnd.Format("20060102T150405Z") + "\n"
ret += "LOCATION:" + event.Room + "\n"
- ret += "DESCRIPTION;ENCODING=QUOTED-PRINTABLE:" + bluemonday.StrictPolicy().Sanitize(strings.Replace(event.Abstract, "\n", "\\n", -1)) + "\\nLast Synchronised: " + now.Format(time.DateTime) + "\n"
+ ret += "DESCRIPTION;ENCODING=QUOTED-PRINTABLE:" + bluemonday.StrictPolicy().Sanitize(strings.Replace(event.Abstract, "\n", "\\n", -1)) + "\\n\\nconfplanner: last synchronised: " + now.Format(time.RFC1123) + "\n"
ret += "END:VEVENT\n"
}
ret += "END:VCALENDAR\n"