diff --git a/index.ts b/index.ts index 75ee679..97d2274 100644 --- a/index.ts +++ b/index.ts @@ -17,7 +17,11 @@ if (process.env.AuthorizationHeaderToken) { const getTopLangs = async (type: "users" | "orgs", name: string) => { const obj: Record = {} 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;