diff --git a/lib/src/services/events/events_service.dart b/lib/src/services/events/events_service.dart index 44c6586..fc3a2f7 100644 --- a/lib/src/services/events/events_service.dart +++ b/lib/src/services/events/events_service.dart @@ -162,7 +162,7 @@ class ClpEvent implements Event { factory ClpEvent.fromJson(Map json) { return ClpEvent( - title: json["title"], + title: json["title"] ?? "", startTime: DateTime.parse(json["date"] + " " + json["start"]), endTime: DateTime.parse(json["date"] + " " + json["end"]), location: json["location"],