mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Merge pull request #3937 from nextcloud/downstream-27234
fix typo in sftp public key
This commit is contained in:
commit
d2b1b02244
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class AjaxController extends Controller {
|
|||
private function generateSshKeys() {
|
||||
$key = $this->rsaMechanism->createKey();
|
||||
// Replace the placeholder label with a more meaningful one
|
||||
$key['publicKey'] = str_replace('phpseclib-generated-key', gethostname(), $key['publickey']);
|
||||
$key['publickey'] = str_replace('phpseclib-generated-key', gethostname(), $key['publickey']);
|
||||
|
||||
return $key;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue