mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 09:09:02 +00:00
Fix bug where repositories appear unadopted (#15757)
Fix bug where repositories with capital letters in their names appear unadopted. Fix #15755 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
edb838997c
commit
114c85e6ef
|
@ -228,7 +228,7 @@ func ListUnadoptedRepositories(query string, opts *models.ListOptions) ([]string
|
||||||
found := false
|
found := false
|
||||||
repoLoop:
|
repoLoop:
|
||||||
for i, repo := range repos {
|
for i, repo := range repos {
|
||||||
if repo.Name == name {
|
if repo.LowerName == name {
|
||||||
found = true
|
found = true
|
||||||
repos = append(repos[:i], repos[i+1:]...)
|
repos = append(repos[:i], repos[i+1:]...)
|
||||||
break repoLoop
|
break repoLoop
|
||||||
|
|
Loading…
Reference in a new issue