mirror of
https://github.com/go-gitea/gitea
synced 2024-11-16 15:14:24 +00:00
remove extra comma
This commit is contained in:
parent
12639c577f
commit
b40922f4d4
@ -172,7 +172,7 @@ func SettingsSSHKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Remove newline characters from form.KeyContent
|
// Remove newline characters from form.KeyContent
|
||||||
cleanKeyContent := strings.Replace(form.KeyContent, "\n", "", -1),
|
cleanKeyContent := strings.Replace(form.KeyContent, "\n", "", -1)
|
||||||
|
|
||||||
if ok, err := models.CheckPublicKeyString(cleanKeyContent); !ok {
|
if ok, err := models.CheckPublicKeyString(cleanKeyContent); !ok {
|
||||||
ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error()))
|
ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error()))
|
||||||
|
Loading…
Reference in New Issue
Block a user