Refactor variable names for clarity in repository fetching logic

This commit is contained in:
Seth 2025-01-15 13:00:50 -05:00
parent a9ae1d92b7
commit d8b09526fc
No known key found for this signature in database
GPG key ID: 8B7A2C60CDF65CAC

View file

@ -16,10 +16,10 @@ if (process.env.AuthorizationHeaderToken) {
const getTopLangs = async (type: "users" | "orgs", name: string) => {
const obj: Record<string, number> = {}
const userRepoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts);
const userRepos = await userRepoResp.json() as repos;
const repoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts);
const repos = await repoResp.json() as repos;
for (const repo of userRepos) {
for (const repo of repos) {
const lang = repo.language;
if (obj[lang] && lang !== "") {