forked from forgejo/forgejo
refactor: Remove unnecessary type conversions (#772)
This commit is contained in:
parent
4faf097fb9
commit
25663b5816
4 changed files with 5 additions and 5 deletions
|
@ -219,7 +219,7 @@ func SSHKeyGenParsePublicKey(key string) (string, int, error) {
|
|||
func SSHNativeParsePublicKey(keyLine string) (string, int, error) {
|
||||
fields := strings.Fields(keyLine)
|
||||
if len(fields) < 2 {
|
||||
return "", 0, fmt.Errorf("not enough fields in public key line: %s", string(keyLine))
|
||||
return "", 0, fmt.Errorf("not enough fields in public key line: %s", keyLine)
|
||||
}
|
||||
|
||||
raw, err := base64.StdEncoding.DecodeString(fields[1])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue