mirror of
https://github.com/go-gitea/gitea
synced 2024-11-07 09:15:53 +01:00
fix #1953
This commit is contained in:
parent
942284648e
commit
4d3138cd10
@ -101,6 +101,10 @@ func (u *User) GetAccessibleRepositories() ([]*Repository, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if len(accesses) == 0 {
|
||||
return []*Repository{}, nil
|
||||
}
|
||||
|
||||
repoIDs := make([]int64, 0, len(accesses))
|
||||
for _, access := range accesses {
|
||||
repoIDs = append(repoIDs, access.RepoID)
|
||||
|
Loading…
Reference in New Issue
Block a user