mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:16:20 +01:00
Remove useless fmt.Errorf("%v", err) (#3337)
This commit is contained in:
parent
e7295f27a9
commit
84feb016f5
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ func Issues(ctx *context.Context) {
|
||||||
showRepos := models.RepositoryListOfMap(showReposMap)
|
showRepos := models.RepositoryListOfMap(showReposMap)
|
||||||
sort.Sort(showRepos)
|
sort.Sort(showRepos)
|
||||||
if err = showRepos.LoadAttributes(); err != nil {
|
if err = showRepos.LoadAttributes(); err != nil {
|
||||||
ctx.Handle(500, "LoadAttributes", fmt.Errorf("%v", err))
|
ctx.Handle(500, "LoadAttributes", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue