summaryrefslogtreecommitdiffstats
path: root/routers/org
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-03-16 04:04:27 -0400
committerUnknwon <u@gogs.io>2015-03-16 04:04:27 -0400
commit588f3215c6c4a82c7ad9cbd2cc6a5683d0ca3cc2 (patch)
tree3c62e7d0e50bf3d4046ecf07fd33063a3d8958ac /routers/org
parent471b8a18ab73b181b0d6769e2bd95111afd0e9d3 (diff)
downloadgitea-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.go2
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