aboutsummaryrefslogtreecommitdiff
path: root/module/entry-points/server.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/entry-points/server.scm')
-rw-r--r--module/entry-points/server.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/entry-points/server.scm b/module/entry-points/server.scm
index 55bfc770..8553da50 100644
--- a/module/entry-points/server.scm
+++ b/module/entry-points/server.scm
@@ -91,7 +91,9 @@
(find (lambda (ev) (equal? uid (attr ev 'UID)))
repeating))
(return '((content-type text/calendar))
- (with-output-to-string (lambda () ((@ (output ical) component->ical-string) it))))
+ (with-output-to-string
+ (lambda () ((@ (output ical) print-components-with-fake-parent)
+ (list it)))))
(return (build-response code: 404)
(format #f "No component with UID=~a found." uid))))