diff --git a/libcal/src/libraryScraper.ts b/libcal/src/libraryScraper.ts index 21a39c4..d5ab0b4 100644 --- a/libcal/src/libraryScraper.ts +++ b/libcal/src/libraryScraper.ts @@ -228,11 +228,11 @@ const runScrapeJob = async () => { console.time("Scraping"); const allRooms: Room[] = []; const allBookings: RoomBooking[] = []; - for (const library of LIBRARIES) { - const { rooms, bookings } = await scrapeLibrary(library); - allRooms.push(...rooms); - allBookings.push(...bookings); - } + // for (const library of LIBRARIES) { + // const { rooms, bookings } = await scrapeLibrary(library); + // allRooms.push(...rooms); + // allBookings.push(...bookings); + // } console.timeEnd("Scraping"); // Send to Hasuragres