aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-11-05 23:25:43 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2020-11-05 23:25:43 +0100
commit7a82321d5b3dcceab12d62aa9c78e3618cff4f94 (patch)
tree25ea3bd0ebcf71a006d2f891141726d6ee216b04
parentHTML Prettyify code for following tags. (diff)
downloadcalp-7a82321d5b3dcceab12d62aa9c78e3618cff4f94.tar.gz
calp-7a82321d5b3dcceab12d62aa9c78e3618cff4f94.tar.xz
Change recovery on unexpected ',' in TEXT field.
-rw-r--r--module/vcomponent/ical/parse.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/vcomponent/ical/parse.scm b/module/vcomponent/ical/parse.scm
index 9c555bca..8499d289 100644
--- a/module/vcomponent/ical/parse.scm
+++ b/module/vcomponent/ical/parse.scm
@@ -135,7 +135,7 @@
(let ((v ((get-parser 'TEXT) params value)))
(unless (= 1 (length v))
(warning "List in non-list field: ~s" v))
- (car v)))]
+ (string-join v ",")))]
;; TEXT, but allow a list
[(memv key '(CATEGORIES RESOURCES))