aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models/ssh_key.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/models/ssh_key.go b/models/ssh_key.go
index 4a6acb8ecf..98fb2dcdbf 100644
--- a/models/ssh_key.go
+++ b/models/ssh_key.go
@@ -105,6 +105,8 @@ func extractTypeFromBase64Key(key string) (string, error) {
func parseKeyString(content string) (string, error) {
// Transform all legal line endings to a single "\n".
content = strings.NewReplacer("\r\n", "\n", "\r", "\n").Replace(content)
+ // remove trailing newline (and beginning spaces too)
+ content = strings.TrimSpace(content)
lines := strings.Split(content, "\n")
var keyType, keyContent, keyComment string