fix: 500 error on /explore/repos page. (#946)
This commit is contained in:
parent
9d2b830275
commit
a31f64d639
|
@ -1198,10 +1198,8 @@ func Repositories(opts *SearchRepoOptions) (_ RepositoryList, err error) {
|
||||||
return nil, fmt.Errorf("Repo: %v", err)
|
return nil, fmt.Errorf("Repo: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if opts.Searcher != nil || opts.Starred {
|
if err = repos.loadAttributes(x); err != nil {
|
||||||
if err = repos.loadAttributes(x); err != nil {
|
return nil, fmt.Errorf("LoadAttributes: %v", err)
|
||||||
return nil, fmt.Errorf("LoadAttributes: %v", err)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return repos, nil
|
return repos, nil
|
||||||
|
@ -1743,10 +1741,8 @@ func GetRecentUpdatedRepositories(opts *SearchRepoOptions) (repos RepositoryList
|
||||||
return nil, fmt.Errorf("Repo: %v", err)
|
return nil, fmt.Errorf("Repo: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if opts.Searcher != nil || opts.Starred {
|
if err = repos.loadAttributes(x); err != nil {
|
||||||
if err = repos.loadAttributes(x); err != nil {
|
return nil, fmt.Errorf("LoadAttributes: %v", err)
|
||||||
return nil, fmt.Errorf("LoadAttributes: %v", err)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return repos, nil
|
return repos, nil
|
||||||
|
@ -1781,14 +1777,15 @@ func GetPrivateRepositoryCount(u *User) (int64, error) {
|
||||||
|
|
||||||
// SearchRepoOptions holds the search options
|
// SearchRepoOptions holds the search options
|
||||||
type SearchRepoOptions struct {
|
type SearchRepoOptions struct {
|
||||||
Keyword string
|
Keyword string
|
||||||
OwnerID int64
|
OwnerID int64
|
||||||
Searcher *User //ID of the person who's seeking
|
Searcher *User //ID of the person who's seeking
|
||||||
OrderBy string
|
OrderBy string
|
||||||
Private bool // Include private repositories in results
|
Private bool // Include private repositories in results
|
||||||
Starred bool
|
Starred bool
|
||||||
Page int
|
Page int
|
||||||
PageSize int // Can be smaller than or equal to setting.ExplorePagingNum
|
IsProfile bool
|
||||||
|
PageSize int // Can be smaller than or equal to setting.ExplorePagingNum
|
||||||
}
|
}
|
||||||
|
|
||||||
// SearchRepositoryByName takes keyword and part of repository name to search,
|
// SearchRepositoryByName takes keyword and part of repository name to search,
|
||||||
|
@ -1856,7 +1853,7 @@ func SearchRepositoryByName(opts *SearchRepoOptions) (repos RepositoryList, _ in
|
||||||
return nil, 0, fmt.Errorf("Repo: %v", err)
|
return nil, 0, fmt.Errorf("Repo: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if opts.Searcher != nil || opts.Starred {
|
if !opts.IsProfile {
|
||||||
if err = repos.loadAttributes(x); err != nil {
|
if err = repos.loadAttributes(x); err != nil {
|
||||||
return nil, 0, fmt.Errorf("LoadAttributes: %v", err)
|
return nil, 0, fmt.Errorf("LoadAttributes: %v", err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -192,12 +192,13 @@ func Profile(ctx *context.Context) {
|
||||||
ctx.Data["Total"] = total
|
ctx.Data["Total"] = total
|
||||||
} else {
|
} else {
|
||||||
repos, count, err = models.SearchRepositoryByName(&models.SearchRepoOptions{
|
repos, count, err = models.SearchRepositoryByName(&models.SearchRepoOptions{
|
||||||
Keyword: keyword,
|
Keyword: keyword,
|
||||||
OwnerID: ctxUser.ID,
|
OwnerID: ctxUser.ID,
|
||||||
OrderBy: orderBy,
|
OrderBy: orderBy,
|
||||||
Private: showPrivate,
|
Private: showPrivate,
|
||||||
Page: page,
|
Page: page,
|
||||||
PageSize: setting.UI.User.RepoPagingNum,
|
IsProfile: true,
|
||||||
|
PageSize: setting.UI.User.RepoPagingNum,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Handle(500, "SearchRepositoryByName", err)
|
ctx.Handle(500, "SearchRepositoryByName", err)
|
||||||
|
|
Loading…
Reference in New Issue