diff options
author | Unknwon <u@gogs.io> | 2015-03-16 04:04:27 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-03-16 04:04:27 -0400 |
commit | 588f3215c6c4a82c7ad9cbd2cc6a5683d0ca3cc2 (patch) | |
tree | 3c62e7d0e50bf3d4046ecf07fd33063a3d8958ac /routers/org | |
parent | 471b8a18ab73b181b0d6769e2bd95111afd0e9d3 (diff) | |
download | gitea-588f3215c6c4a82c7ad9cbd2cc6a5683d0ca3cc2.tar.gz gitea-588f3215c6c4a82c7ad9cbd2cc6a5683d0ca3cc2.zip |
#1040: dashboard no longer accessible when repo is missing
Diffstat (limited to 'routers/org')
-rw-r--r-- | routers/org/teams.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/org/teams.go b/routers/org/teams.go index 69f2734c64..40345cf7c6 100644 --- a/routers/org/teams.go +++ b/routers/org/teams.go @@ -124,7 +124,7 @@ func TeamsRepoAction(ctx *middleware.Context) { var repo *models.Repository repo, err = models.GetRepositoryByName(ctx.Org.Organization.Id, repoName) if err != nil { - if err == models.ErrRepoNotExist { + if models.IsErrRepoNotExist(err) { ctx.Flash.Error(ctx.Tr("org.teams.add_nonexistent_repo")) ctx.Redirect(ctx.Org.OrgLink + "/teams/" + ctx.Org.Team.LowerName + "/repositories") return |