CalDAV #1

Merged
fenris merged 36 commits from task-192 into main 2025-09-25 17:05:15 +02:00
Showing only changes of commit 6309422429 - Show all commits

View file

@ -12128,6 +12128,12 @@ var lib_plankton;
"url": vevent.url, "url": vevent.url,
})); }));
} }
// categories
if ((vevent.categories !== undefined) && (vevent.categories.length > 0)) {
content_lines.push(lib_plankton.string.coin("CATEGORIES:{{categories}}", {
"categories": vevent.categories.join(","),
}));
}
} }
content_lines.push("END:VEVENT"); content_lines.push("END:VEVENT");
}); });