aboutsummaryrefslogtreecommitdiff
path: root/static/jcal.ts
diff options
context:
space:
mode:
Diffstat (limited to 'static/jcal.ts')
-rw-r--r--static/jcal.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/jcal.ts b/static/jcal.ts
index 327a560d..59ee93b4 100644
--- a/static/jcal.ts
+++ b/static/jcal.ts
@@ -82,7 +82,7 @@ function jcal_property_to_xcal_property(
let el = doc.createElementNS(xcal, key);
- for (let v of asList(params[key])) {
+ for (let v of asList(params.get(key))) {
let text = doc.createElementNS(xcal, 'text');
text.textContent = '' + v;
el.appendChild(text);