From 200d0cc16c57958486ae6f339edc04b723fe3e8e Mon Sep 17 00:00:00 2001 From: Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> Date: Fri, 31 May 2024 05:47:18 +0200 Subject: [PATCH] Fix typo in 1a70031983001e10469b2d186dcf30de10aec3db. Fixes #4239. --- cli/Commands/OAuth2/Keys.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Commands/OAuth2/Keys.php b/cli/Commands/OAuth2/Keys.php index 93282ba3153..9132ad6152f 100644 --- a/cli/Commands/OAuth2/Keys.php +++ b/cli/Commands/OAuth2/Keys.php @@ -46,7 +46,7 @@ class Keys extends Command $this->storeKeyContentsToFile($encryptionKey, $this->generateEncryptionKey()); - $keys = RSA::createKey(4096); + $key = RSA::createKey(4096); $this->storeKeyContentsToFile($publicKey, (string) $key->getPublicKey()); $this->storeKeyContentsToFile($privateKey, (string) $key); -- GitLab