0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-09-21 08:39:05 +02:00

Don't return 500 if mirror url contains special chars (#31859) (#31895)

Backport #31859
This commit is contained in:
Lunny Xiao 2024-08-22 00:10:50 +08:00 committed by GitHub
parent d9c65c9a52
commit e060ae88e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -248,7 +248,8 @@ func SettingsPost(ctx *context.Context) {
remoteAddress, err := util.SanitizeURL(form.MirrorAddress)
if err != nil {
ctx.ServerError("SanitizeURL", err)
ctx.Data["Err_MirrorAddress"] = true
handleSettingRemoteAddrError(ctx, err, form)
return
}
pullMirror.RemoteAddress = remoteAddress
@ -409,7 +410,8 @@ func SettingsPost(ctx *context.Context) {
remoteAddress, err := util.SanitizeURL(form.PushMirrorAddress)
if err != nil {
ctx.ServerError("SanitizeURL", err)
ctx.Data["Err_PushMirrorAddress"] = true
handleSettingRemoteAddrError(ctx, err, form)
return
}