aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/vcomponent/parse/component.scm9
1 files changed, 8 insertions, 1 deletions
diff --git a/module/vcomponent/parse/component.scm b/module/vcomponent/parse/component.scm
index d54f977a..70af3963 100644
--- a/module/vcomponent/parse/component.scm
+++ b/module/vcomponent/parse/component.scm
@@ -137,7 +137,14 @@
;; See RFC 5545 p.53 for list of all repeating types
;; (for vcomponent)
- (if (memv key '(EXDATE ATTENDEE))
+ ;; TODO split on comman (,) here?
+ (if (memv key '(ATTACH ATTENDEE CATEGORIES
+ COMMENT CONTACT EXDATE
+ REQUEST-STATUS RELATED-TO
+ RESOURCES RDATE
+ ;; x-prop
+ ;; iana-prop
+ ))
(aif (attr* (car stack) key)
(set! (attr* (car stack) key) (cons vline it))
(set! (attr* (car stack) key) (list vline)))