Fixes to CDN files

This commit is contained in:
root 2017-08-03 15:01:22 +04:30
parent 1c742559cc
commit 03df107439
2 changed files with 6 additions and 1 deletions

View File

@ -46,6 +46,7 @@ var_dump(is_null($this->{$name}));
$this->settings = $settings;
foreach ($this->sockets as $key => $socket) {
if ($socket instanceof Connection) {
\danog\MadelineProto\Logger::log(['Connecting to DC '.$key.'...'], \danog\MadelineProto\Logger::VERBOSE);
$socket->old = true;
$socket->close_and_reopen();
} else {

View File

@ -777,7 +777,11 @@ class MTProto extends \Volatile
unset($dc['ipv6']);
$this->settings['connection'][$test][$ipv6][$id] = $dc;
}
$this->datacenter->__construct($this->settings['connection'], $this->settings['connection_settings']);
$curdc = $this->datacenter->curdc;
$this->datacenter->dclist = $this->settings['connection'];
$this->datacenter->settings = $this->settings['connection_settings'];
$this->connect_to_all_dcs();
$this->datacenter->curdc = $curdc;
}
public function get_self()