mirror of https://github.com/apache/cloudstack.git
Removed double encoding of Public Key from JS.
See Cloudstack issue CLOUDSTACK-8742 for information.
This commit is contained in:
parent
bc51a42fc2
commit
f9e21da5dd
|
|
@ -1813,7 +1813,7 @@
|
|||
|
||||
if (args.data.publickey != null && args.data.publickey.length > 0) {
|
||||
$.extend(data, {
|
||||
publickey: encodeURIComponent(args.data.publickey)
|
||||
publickey: args.data.publickey
|
||||
});
|
||||
$.ajax({
|
||||
url: createURL('registerSSHKeyPair'),
|
||||
|
|
|
|||
Loading…
Reference in New Issue