Skip to content

Commit

Permalink
👽️ filter more special events / non-lectures
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Mar 27, 2024
1 parent 883c758 commit 2873d42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public List<Session> getSessions() {
final Iterator<String> roomKeys = rooms.keys();
while (roomKeys.hasNext()) {
final String room = roomKeys.next();
if (room.startsWith("info°center") || room.startsWith("ring°kartbahn")) {
if (room.contains("info°center") || room.contains("ring°kartbahn") || room.contains("ring°boulevard")) {
continue;
}
final JSONArray slots = rooms.getJSONArray(room);
Expand Down

0 comments on commit 2873d42

Please sign in to comment.