From 92ba959fa46e1386f997fe661cb49bcbd5d76b7c Mon Sep 17 00:00:00 2001 From: Sharon Kanner Date: Tue, 19 Jan 2021 19:57:29 -0500 Subject: [PATCH] another bucket --- scraper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper.js b/scraper.js index 79d170a..6a18c14 100644 --- a/scraper.js +++ b/scraper.js @@ -275,7 +275,7 @@ function getEventsForSite(siteLink) { function getApproxAppointmentCount(appointmentCount) { const actualAppointmentCount = parseInt(appointmentCount); - const buckets = [0, 5, 10, 25, 50, 100, 150, 200, 250] + const buckets = [0, 5, 10, 25, 50, 100, 150, 200, 250, 300] for (let i = 1; i < buckets.length; i++) { if (actualAppointmentCount < buckets[i]) { return buckets[i - 1];