aboutsummaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/convert/repository.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/services/convert/repository.go b/services/convert/repository.go
index f470fd1656..54a61efe43 100644
--- a/services/convert/repository.go
+++ b/services/convert/repository.go
@@ -124,11 +124,10 @@ func innerToRepo(ctx context.Context, repo *repo_model.Repository, mode perm.Acc
mirrorInterval := ""
var mirrorUpdated time.Time
if repo.IsMirror {
- var err error
- repo.Mirror, err = repo_model.GetMirrorByRepoID(ctx, repo.ID)
+ pullMirror, err := repo_model.GetMirrorByRepoID(ctx, repo.ID)
if err == nil {
- mirrorInterval = repo.Mirror.Interval.String()
- mirrorUpdated = repo.Mirror.UpdatedUnix.AsTime()
+ mirrorInterval = pullMirror.Interval.String()
+ mirrorUpdated = pullMirror.UpdatedUnix.AsTime()
}
}