aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/recurrence
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-08-21 11:57:26 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2021-08-21 11:57:26 +0200
commitc28ee92cc49444a04ce44440b1e0c4bc1ac87126 (patch)
treed8f51c23326632865fd90485190f53c358d4708b /module/vcomponent/recurrence
parentMake zero-length events be part of day flow. (diff)
downloadcalp-c28ee92cc49444a04ce44440b1e0c4bc1ac87126.tar.gz
calp-c28ee92cc49444a04ce44440b1e0c4bc1ac87126.tar.xz
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.
Diffstat (limited to 'module/vcomponent/recurrence')
-rw-r--r--module/vcomponent/recurrence/internal.scm4
1 files changed, 2 insertions, 2 deletions
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)