summaryrefslogtreecommitdiffstats
path: root/modules/context
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2022-06-14 00:12:59 +0800
committerGitHub <noreply@github.com>2022-06-13 18:12:59 +0200
commitff82a1831521bb2a9d91884eb2bc426a6403b0ed (patch)
tree9d2ec888cd66a5ff4b988eb4cb5760b60c8996e3 /modules/context
parent3c6c1507403b659a9ed790df19311a9f83175364 (diff)
downloadgitea-ff82a1831521bb2a9d91884eb2bc426a6403b0ed.tar.gz
gitea-ff82a1831521bb2a9d91884eb2bc426a6403b0ed.zip
Fix mirror template bug (#19959)
* Fix mirror template bug Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: delvh <dev.lh@web.de>
Diffstat (limited to 'modules/context')
-rw-r--r--modules/context/repo.go20
1 files changed, 6 insertions, 14 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go
index c2b8306b9d..8e75ad07d5 100644
--- a/modules/context/repo.go
+++ b/modules/context/repo.go
@@ -380,24 +380,16 @@ func repoAssignment(ctx *Context, repo *repo_model.Repository) {
ctx.Data["Permission"] = &ctx.Repo.Permission
if repo.IsMirror {
-
- // Check if the mirror has finsihed migrationg, only then we can
- // lookup the mirror informtation the database.
- finishedMigrating, err := models.HasFinishedMigratingTask(repo.ID)
- if err != nil {
- ctx.ServerError("HasFinishedMigratingTask", err)
- return
- }
- if finishedMigrating {
- ctx.Repo.Mirror, err = repo_model.GetMirrorByRepoID(ctx, repo.ID)
- if err != nil {
- ctx.ServerError("GetMirrorByRepoID", err)
- return
- }
+ ctx.Repo.Mirror, err = repo_model.GetMirrorByRepoID(ctx, repo.ID)
+ if err == nil {
ctx.Repo.Mirror.Repo = repo
+ ctx.Data["IsPullMirror"] = true
ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
ctx.Data["Mirror"] = ctx.Repo.Mirror
+ } else if err != repo_model.ErrMirrorNotExist {
+ ctx.ServerError("GetMirrorByRepoID", err)
+ return
}
}