From cf188b480aef86259070a582fdc226c16b69cac5 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Fri, 20 Jan 2017 00:55:27 +0100 Subject: [PATCH] Remove debugging stuff --- src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php b/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php index 43c6b243..6f701737 100644 --- a/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php @@ -507,7 +507,6 @@ trait AuthKeyHandler list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->datacenter->auth_key['auth_key']); $encrypted_message = $this->datacenter->auth_key['id'].$message_key.$this->ige_encrypt($encrypted_data.$padding, $aes_key, $aes_iv); $res = $this->method_call('auth.bindTempAuthKey', ['perm_auth_key_id' => $perm_auth_key_id, 'nonce' => $nonce, 'expires_at' => $expires_at, 'encrypted_message' => $encrypted_message], $int_message_id); - var_dump($res); if ($res === true) { \danog\MadelineProto\Logger::log('Successfully binded temporary and permanent authorization keys.');