We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae685c8 commit 2e03c4cCopy full SHA for 2e03c4c
discovery/describers/repository.go
@@ -322,7 +322,6 @@ func util_transformToFinalRepoDetail(detail *model.RepoDetail) *model.Repository
322
OrganizationObject: finalOrg,
323
Parent: parent,
324
Source: source,
325
- Organization: finalOrg.Login,
326
RepositoryFullName: repoFullName,
327
328
// Single primary language from /repos
@@ -381,6 +380,9 @@ func util_transformToFinalRepoDetail(detail *model.RepoDetail) *model.Repository
381
380
OpenIssues: detail.OpenIssuesCount,
382
},
383
}
+ if finalOrg != nil {
384
+ finalDetail.Organization = finalOrg.Login
385
+ }
386
387
return finalDetail
388
0 commit comments