Skip to content

Commit

Permalink
👽️ filter 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 26, 2024
1 parent ecf1ea1 commit 8a5efb6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ public List<Session> getSessions() {
final Iterator<String> roomKeys = rooms.keys();
while (roomKeys.hasNext()) {
final String room = roomKeys.next();
if (room.startsWith("info°center")) {
continue;
}
final JSONArray slots = rooms.getJSONArray(room);
for (int slotCounter = 0; slotCounter < slots.length(); slotCounter++) {
final JSONObject slot = slots.getJSONObject(slotCounter);
Expand Down

0 comments on commit 8a5efb6

Please sign in to comment.