Fix HTML encoding in calendar #736

This commit is contained in:
yflory 2022-09-21 11:09:58 +03:00
parent 57c3c28cb0
commit b7024b23f5

View file

@ -961,9 +961,9 @@ ICS ==> create a new event with the same UID and a RECURRENCE-ID field (with a v
var schedule = {
id: Util.uid(),
calendarId: event.calendarId,
title: Util.fixHTML(event.title),
title: event.title,
category: "time",
location: Util.fixHTML(event.location),
location: event.location,
start: +startDate,
isAllDay: event.isAllDay,
end: +endDate,