aboutsummaryrefslogtreecommitdiff
path: root/module/output/ical.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-04-30 19:17:35 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-04-30 23:04:01 +0200
commitaa44c16ce953c090b2eb3ce580c60fa8934a7720 (patch)
tree11710e34de01a2ac31e5acac9c8a62af3f09888a /module/output/ical.scm
parentUpdate server to use app. (diff)
downloadcalp-aa44c16ce953c090b2eb3ce580c60fa8934a7720.tar.gz
calp-aa44c16ce953c090b2eb3ce580c60fa8934a7720.tar.xz
Change call signature for [gs]etf.
Diffstat (limited to '')
-rw-r--r--module/output/ical.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/output/ical.scm b/module/output/ical.scm
index 8388bfc1..098d4e90 100644
--- a/module/output/ical.scm
+++ b/module/output/ical.scm
@@ -153,7 +153,7 @@
(add-child! cal event)
(awhen (prop (attr* event 'DTSTART) 'TZID)
- (add-child! cal (zoneinfo->vtimezone (getf (current-app) 'zoneinfo) it)))
+ (add-child! cal (zoneinfo->vtimezone (getf 'zoneinfo) it)))
(unless (attr event 'UID)
(set! (attr event 'UID)
@@ -202,7 +202,7 @@ CALSCALE:GREGORIAN\r
(let ((tz-names (get-tz-names events)))
(for-each component->ical-string
;; TODO we realy should send the earliest event from each timezone here.
- (map (lambda (name) (zoneinfo->vtimezone (getf (current-app) 'zoneinfo) name (car events)))
+ (map (lambda (name) (zoneinfo->vtimezone (getf 'zoneinfo) name (car events)))
tz-names)))
(for-each component->ical-string events)
@@ -218,4 +218,4 @@ CALSCALE:GREGORIAN\r
;; We just dump all repeating objects, since it's much cheaper to do
;; it this way than to actually figure out which are applicable for
;; the given date range.
- (getf (current-app) 'repeating-events))))
+ (getf 'repeating-events))))