aboutsummaryrefslogtreecommitdiff
path: root/static/vevent.ts
diff options
context:
space:
mode:
Diffstat (limited to 'static/vevent.ts')
-rw-r--r--static/vevent.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/vevent.ts b/static/vevent.ts
index 4f47f8e3..307c572f 100644
--- a/static/vevent.ts
+++ b/static/vevent.ts
@@ -236,7 +236,8 @@ function xml_to_vcal(xml: Element): VEvent {
let property_map = new Map()
if (properties) {
- property_loop: for (var i = 0; i < properties.childElementCount; i++) {
+ property_loop:
+ for (var i = 0; i < properties.childElementCount; i++) {
let tag = properties.childNodes[i];
if (!(tag instanceof Element)) continue;
let parameters = {};