Handle error response for repository fetching in getTopLangs function
This commit is contained in:
parent
4f10bdce29
commit
47a029baba
1 changed files with 5 additions and 1 deletions
6
index.ts
6
index.ts
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue