Handle error response for repository fetching in getTopLangs function

This commit is contained in:
Seth 2025-01-15 13:06:56 -05:00
parent 4f10bdce29
commit 47a029baba
No known key found for this signature in database
GPG key ID: 8B7A2C60CDF65CAC

View file

@ -17,7 +17,11 @@ if (process.env.AuthorizationHeaderToken) {
const getTopLangs = async (type: "users" | "orgs", name: string) => {
const obj: Record<string, number> = {}
const repoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts);
const repos = await repoResp.json() as repos;
const repos = await repoResp.json() as repos | { message: string };
if ("message" in repos) {
throw new Error(repos.message);
}
for (const repo of repos) {
const lang = repo.language;