Skip to content
Snippets Groups Projects
Commit 035af523 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

Appointment_entity: fix bug while checking for differences of X-ADITO-ISALLDAYEVENT

parent 0f9b4516
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ function areEventAndFieldsDifferent(event){
event[calendars.DTSTART] != vars.get("$field.BEGIN") ||
event[calendars.DTEND] != vars.get("$field.END") ||
event[calendars.HASREMINDER] != "false" ||
event["X-ADITO-ISALLDAYEVENT"] == vars.get("$field.ALLDAY") ||
event["X-ADITO-ISALLDAYEVENT"] != vars.get("$field.ALLDAY") ||
event[calendars.CLASSIFICATION] != vars.get("$field.CLASSIFICATION") ||
event[calendars.CATEGORIES] != vars.get("$field.CATEGORIES") ||
event[calendars.AFFECTEDUSERS] != vars.get("$field.ATTENDEES") ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment