Skip to content

Commit

Permalink
Fix "Null check operator used on a null value" when loading events in…
Browse files Browse the repository at this point in the history
… the timetable (#1081)
  • Loading branch information
nilsreichardt authored Sep 24, 2023
1 parent cd74153 commit 5c6b710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/timetable/src/logic/timetable_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class TimetableBuilder {
start: event.startTime,
end: event.endTime,
data: event,
groupInfo: groupInfo[event.groupID]!,
groupInfo: groupInfo[event.groupID],
priority: 1,
properties: properties,
);
Expand Down

0 comments on commit 5c6b710

Please sign in to comment.