3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-11 06:29:29 +01:00
This commit is contained in:
Shivaram Lingamneni 2020-06-21 18:42:45 -04:00
parent 4cadb7ad58
commit 97789cde7e

View File

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