From c8545fc90fae0df0dc027b98e2dae7a8deb55470 Mon Sep 17 00:00:00 2001 From: Raghav Kaul Date: Mon, 25 Mar 2024 20:37:09 +0000 Subject: [PATCH] update url Signed-off-by: Raghav Kaul --- scorecards-site/static/viewer/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scorecards-site/static/viewer/index.html b/scorecards-site/static/viewer/index.html index e47fed76..2bd0c86a 100644 --- a/scorecards-site/static/viewer/index.html +++ b/scorecards-site/static/viewer/index.html @@ -1313,7 +1313,7 @@ } async function apiFetch(platform, org, repo, commit) { - const response = await fetch(`https://api.securityscorecards.dev/projects/${platform}/${org}/${repo}${commit ? `?commit=${commit}` : ''}`); + const response = await fetch(`https://api.scorecard.dev/projects/${platform}/${org}/${repo}${commit ? `?commit=${commit}` : ''}`); if (response.ok) { const data = await response.json(); return data;