From c28ee92cc49444a04ce44440b1e0c4bc1ac87126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 21 Aug 2021 11:57:26 +0200 Subject: Repair BYDAY output for ical serialization. I have no idea why the byday case was commented out while implementing xcal output. Either way it's now fixed, and should hopefully stay fixed with some tests. --- module/vcomponent/recurrence/internal.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/vcomponent') diff --git a/module/vcomponent/recurrence/internal.scm b/module/vcomponent/recurrence/internal.scm index 1b9dd405..a57dfd65 100644 --- a/module/vcomponent/recurrence/internal.scm +++ b/module/vcomponent/recurrence/internal.scm @@ -92,8 +92,8 @@ (string-upcase (week-day-name value 2 locale: (make-locale (list LC_TIME) "C")))] - ;; [(byday) - ;; (string-join (map byday->string value) ",")] + [(byday) + (string-join (map byday->string value) ",")] [(freq count interval) (format #f "~a" value)] [(until) -- cgit v1.2.3