mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Fix mirror address setting not working (#20850)
This patch fixes the issue that the mirror address field is ignored from the repo setting form.
This commit is contained in:
		| @@ -228,14 +228,17 @@ func SettingsPost(ctx *context.Context) { | |||||||
| 			form.MirrorPassword, _ = u.User.Password() | 			form.MirrorPassword, _ = u.User.Password() | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		err = migrations.IsMigrateURLAllowed(u.String(), ctx.Doer) | 		address, err := forms.ParseRemoteAddr(form.MirrorAddress, form.MirrorUsername, form.MirrorPassword) | ||||||
|  | 		if err == nil { | ||||||
|  | 			err = migrations.IsMigrateURLAllowed(address, ctx.Doer) | ||||||
|  | 		} | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			ctx.Data["Err_MirrorAddress"] = true | 			ctx.Data["Err_MirrorAddress"] = true | ||||||
| 			handleSettingRemoteAddrError(ctx, err, form) | 			handleSettingRemoteAddrError(ctx, err, form) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		if err := mirror_service.UpdateAddress(ctx, ctx.Repo.Mirror, u.String()); err != nil { | 		if err := mirror_service.UpdateAddress(ctx, ctx.Repo.Mirror, address); err != nil { | ||||||
| 			ctx.ServerError("UpdateAddress", err) | 			ctx.ServerError("UpdateAddress", err) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user