Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2017-12-23 14:33:37 +00:00 committed by StyleCI Bot
parent 59473ebb31
commit 7b2798ddd9

View File

@ -549,10 +549,10 @@ class MTProto
'gzip_encode_if_gt' => 500, // Should I try using gzip encoding for requests bigger than N bytes? Set to -1 to disable. 'gzip_encode_if_gt' => 500, // Should I try using gzip encoding for requests bigger than N bytes? Set to -1 to disable.
], ],
'updates' => [ 'updates' => [
'handle_updates' => true, // Should I handle updates? 'handle_updates' => true, // Should I handle updates?
'handle_old_updates' => true, // Should I handle old updates on startup? 'handle_old_updates' => true, // Should I handle old updates on startup?
'getdifference_interval' => 30, // Getdifference manual polling interval 'getdifference_interval' => 30, // Getdifference manual polling interval
'callback' => 'get_updates_update_handler', // A callable function that will be called every time an update is received, must accept an array (for the update) as the only parameter 'callback' => 'get_updates_update_handler', // A callable function that will be called every time an update is received, must accept an array (for the update) as the only parameter
], ],
'secret_chats' => [ 'secret_chats' => [
'accept_chats' => true, // Should I accept secret chats? Can be true, false or on array of user ids from which to accept chats 'accept_chats' => true, // Should I accept secret chats? Can be true, false or on array of user ids from which to accept chats
@ -704,7 +704,9 @@ class MTProto
$socket->authorized = true; $socket->authorized = true;
break; break;
} catch (\danog\MadelineProto\RPCErrorException $e) { } catch (\danog\MadelineProto\RPCErrorException $e) {
if ($e->rpc === 'DC_ID_INVALID') break; if ($e->rpc === 'DC_ID_INVALID') {
break;
}
\danog\MadelineProto\Logger::log(['Failure while syncing authorization from DC '.$authorized_dc_id.' to DC '.$id.': '.$e->getMessage()], \danog\MadelineProto\Logger::ERROR); \danog\MadelineProto\Logger::log(['Failure while syncing authorization from DC '.$authorized_dc_id.' to DC '.$id.': '.$e->getMessage()], \danog\MadelineProto\Logger::ERROR);
} // Turns out this DC isn't authorized after all } // Turns out this DC isn't authorized after all
} }