Merge pull request #1149 from slingamn/issue1059_certfp

fix #1059
This commit is contained in:
Shivaram Lingamneni 2020-06-22 20:23:15 -07:00 committed by GitHub
commit 0e7557c12d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1092,6 +1092,8 @@ func nsCertHandler(server *Server, client *Client, command string, params []stri
target, certfp = params[0], params[1]
} else if len(params) == 1 {
certfp = params[0]
} else if len(params) == 0 && verb == "add" && rb.session.certfp != "" {
certfp = rb.session.certfp // #1059
} else {
nsNotice(rb, client.t("Invalid parameters"))
return