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
  • Loading branch information
nilsreichardt committed Sep 22, 2023
1 parent 2beee47 commit 171d741
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 171d741

Please sign in to comment.