aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-06-15 18:58:15 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-06-15 18:58:15 +0200
commitf17adce59caebe92a2f7a38a44f65f175f57c546 (patch)
tree02dac31e2575f87c8863feafc8e36ad24f9089ff
parentClarify and fix TZ stuff in (datetime). (diff)
downloadcalp-f17adce59caebe92a2f7a38a44f65f175f57c546.tar.gz
calp-f17adce59caebe92a2f7a38a44f65f175f57c546.tar.xz
Re-add timezone normalization for parsed datetimes.
-rw-r--r--module/vcomponent/parse/types.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/vcomponent/parse/types.scm b/module/vcomponent/parse/types.scm
index 78efe2ff..5971067f 100644
--- a/module/vcomponent/parse/types.scm
+++ b/module/vcomponent/parse/types.scm
@@ -31,7 +31,9 @@
;; DATE-TIME
(define (parse-datetime props value)
- (parse-ics-datetime value (hashq-ref props 'TZID #f)))
+ (get-datetime
+ (parse-ics-datetime
+ value (hashq-ref props 'TZID #f))))
;; DURATION
(define (parse-duration props value)