aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/parse.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/vcomponent/parse.scm')
-rw-r--r--module/vcomponent/parse.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/vcomponent/parse.scm b/module/vcomponent/parse.scm
index 8efa9e62..7ae966a1 100644
--- a/module/vcomponent/parse.scm
+++ b/module/vcomponent/parse.scm
@@ -210,9 +210,9 @@ row ~a column ~a ctx = ~a
(let ((type (and=> (prop it 'VALUE) car)))
(if (or (and=> type (cut string=? <> "DATE-TIME"))
(string-contains (value it) "T"))
- (set! (value it) (parse-datetime (value it) tz)
+ (set! (value it) (parse-ics-datetime (value it) tz)
(prop it 'VALUE) 'DATE-TIME)
- (set! (value it) (parse-date (value it))
+ (set! (value it) (parse-ics-date (value it))
(prop it 'VALUE) 'DATE))))])