From 709dcce56fb4a1206a09873f440f67a8182ea678 Mon Sep 17 00:00:00 2001 From: Nikhil Prasad Date: Wed, 24 Jun 2026 03:16:47 -0500 Subject: [PATCH] Adjust date range for box score data import --- import.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.go b/import.go index aef8893..54bb0e3 100644 --- a/import.go +++ b/import.go @@ -80,7 +80,7 @@ func importGameSchedules(db *gorm.DB) { // for games within a recent date range. func importBoxScores(db *gorm.DB) { from := time.Date(2013, time.January, 1, 0, 0, 0, 0, time.UTC) - to := time.Date(2013, time.January, 10, 5, 30, 0, 0, time.UTC) + to := time.Date(2013, time.January, 7, 5, 30, 0, 0, time.UTC) dateRangeComment := fmt.Sprintf("--- Starting Box Score Data Import for games between %s and %s ---", from.Format("January 2, 2006"),