diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/context/repo.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go index 4a3ccf97..d3475e43 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -111,7 +111,7 @@ func (r *Repository) PullRequestURL(baseBranch, headBranch string) string { func RetrieveBaseRepo(ctx *Context, repo *models.Repository) { // Non-fork repository will not return error in this method. if err := repo.GetBaseRepo(); err != nil { - if models.IsErrRepoNotExist(err) { + if errors.IsRepoNotExist(err) { repo.IsFork = false repo.ForkID = 0 return @@ -180,7 +180,7 @@ func RepoAssignment() macaron.Handler { // Get repository. repo, err := models.GetRepositoryByName(owner.ID, repoName) if err != nil { - if models.IsErrRepoNotExist(err) { + if errors.IsRepoNotExist(err) { if ctx.Query("go-get") == "1" { earlyResponseForGoGetMeta(ctx) return |