Refresh repository mirror from database when the repository's name has changed. (#3276)
This commit is contained in:
parent
5aa2bf86f4
commit
25b3836418
1 changed files with 9 additions and 0 deletions
|
@ -105,6 +105,15 @@ func SettingsPost(ctx *context.Context, form auth.RepoSettingForm) {
|
|||
}
|
||||
|
||||
if repo.IsMirror {
|
||||
if isNameChanged {
|
||||
var err error
|
||||
ctx.Repo.Mirror, err = models.GetMirror(repo.ID)
|
||||
if err != nil {
|
||||
ctx.Handle(500, "RefreshRepositoryMirror", err)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
if form.Interval > 0 {
|
||||
ctx.Repo.Mirror.EnablePrune = form.EnablePrune
|
||||
ctx.Repo.Mirror.Interval = form.Interval
|
||||
|
|
Reference in a new issue