Minor fixes

This commit is contained in:
2022-02-01 14:05:22 +01:00
parent dc78d69a00
commit 351bcd524d
2 changed files with 3 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ public class Event {
this.isFullDay = isFullDay;
this.isPrivate = isPrivate;
if (start != null) this.start = start.toString();
if (start != null) this.end = end.toString();
if (end != null) this.end = end.toString();
this.date = date;
this.ownerId = ownerId;
}