aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/parse
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-06-05 21:48:11 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-06-05 21:48:11 +0200
commitb62ae7068837b18e83948abd1685f5b1b2da52d7 (patch)
treec8685c1b42dc089e41b8c93dadb15828092427a1 /module/vcomponent/parse
parentRemove incorrect output of DURATION. (diff)
downloadcalp-b62ae7068837b18e83948abd1685f5b1b2da52d7.tar.gz
calp-b62ae7068837b18e83948abd1685f5b1b2da52d7.tar.xz
Filter out ALL X-HNH- fields from ics output.
Diffstat (limited to 'module/vcomponent/parse')
-rw-r--r--module/vcomponent/parse/component.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/vcomponent/parse/component.scm b/module/vcomponent/parse/component.scm
index 8526944a..d54f977a 100644
--- a/module/vcomponent/parse/component.scm
+++ b/module/vcomponent/parse/component.scm
@@ -62,7 +62,7 @@
(let ((datetime (parse-ics-datetime value tz)))
(hashq-set! params 'VALUE 'DATE-TIME)
(values (make-vline key (get-datetime datetime) params)
- (make-vline (symbol-append 'X-ORIGINAL- key) datetime params)))
+ (make-vline (symbol-append 'X-HNH-ORIGINAL- key) datetime params)))
(begin (hashq-set! params 'VALUE 'DATE)
(make-vline key (parse-ics-date value) params)))))]