Skip to content

Commit 8a0a948

Browse files
Update GitHub status URLs in scrape.ts
This fixes an error in the previous commit of enterprise GitHub urls not using www in their url
1 parent 6b685bd commit 8a0a948

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/scrape.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
*/
77
import { Database } from "bun:sqlite";
88

9-
const HISTORY_URL = "https://www.us.githubstatus.com/history";
10-
const INCIDENT_URL = "https://www.us.githubstatus.com/api/v2/incidents";
9+
const HISTORY_URL = "https://us.githubstatus.com/history";
10+
const INCIDENT_URL = "https://us.githubstatus.com/api/v2/incidents";
1111
const CUTOFF_YEAR = 2025;
1212

1313
// Pages 1-5 cover Feb 2026 back to Dec 2024 (3 months per page).

0 commit comments

Comments
 (0)