aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-06-29 01:06:47 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-06-29 01:08:54 +0200
commitc64957ba2c156123c4c97bad3728a61d4aa9ef9a (patch)
tree8e9694261aaf166723b744c8c509fe38960776f7
parentCalendar-import file write atomic. (diff)
downloadcalp-c64957ba2c156123c4c97bad3728a61d4aa9ef9a.tar.gz
calp-c64957ba2c156123c4c97bad3728a61d4aa9ef9a.tar.xz
Fix type for components created from xcal.
-rw-r--r--module/vcomponent/parse/xcal.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/vcomponent/parse/xcal.scm b/module/vcomponent/parse/xcal.scm
index 2e4b80aa..e67a8239 100644
--- a/module/vcomponent/parse/xcal.scm
+++ b/module/vcomponent/parse/xcal.scm
@@ -106,7 +106,7 @@
[else data]))
(define-public (sxcal->vcomponent sxcal)
- (define type (car sxcal))
+ (define type (symbol-upcase (car sxcal)))
(define component (make-vcomponent type))
(awhen (assoc-ref sxcal 'properties)