This commit is contained in:
Daniil Gentili 2017-01-30 13:08:10 +01:00
parent e4c25653c7
commit 6179e3a4ee

View File

@ -62,10 +62,8 @@ trait AuthKeyHandler
* *********************************************************************** * ***********************************************************************
* Find our key in the server_public_key_fingerprints vector * Find our key in the server_public_key_fingerprints vector
*/ */
if (!isset($this->key->keydata)) { if (!isset($this->key->keydata['fp'])) {
// Load rsa key $this->key = new \danog\MadelineProto\RSA($this->settings['authorization']['rsa_key']);
\danog\MadelineProto\Logger::log(['Loading RSA key...'], Logger::ULTRA_VERBOSE);
$this->key = new RSA($this->settings['authorization']['rsa_key']);
} }
foreach ($ResPQ['server_public_key_fingerprints'] as $curfp) { foreach ($ResPQ['server_public_key_fingerprints'] as $curfp) {
if ($this->key->keydata['fp'] === $curfp) { if ($this->key->keydata['fp'] === $curfp) {