From ef04c1447f87502349d8d00ce887a6bfd17cdfc3 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Mon, 30 Jan 2017 11:50:03 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php b/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php index 8d507b4d..cd939470 100644 --- a/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php @@ -63,9 +63,9 @@ trait AuthKeyHandler * Find our key in the server_public_key_fingerprints vector */ if (!isset($this->key->keydata)) { - // Load rsa key + // Load rsa key \danog\MadelineProto\Logger::log(['Loading RSA key...'], Logger::ULTRA_VERBOSE); - $this->key = new RSA($this->settings['authorization']['rsa_key']); + $this->key = new RSA($this->settings['authorization']['rsa_key']); } foreach ($ResPQ['server_public_key_fingerprints'] as $curfp) { if ($this->key->keydata['fp'] === $curfp) {