mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix link of some repos on stars page (#737)
Link was wrong the repo was of another owner
This commit is contained in:
parent
3461003a0f
commit
521d429b58
1 changed files with 10 additions and 2 deletions
|
@ -81,7 +81,15 @@ func (u *User) GetStarredRepos(private bool) (repos []*Repository, err error) {
|
|||
sess = sess.And("is_private = ?", false)
|
||||
}
|
||||
|
||||
err = sess.
|
||||
Find(&repos)
|
||||
if err = sess.Find(&repos); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
for _, repo := range repos {
|
||||
if err = repo.GetOwner(); err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue