mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-26 23:14:38 +01:00
Merge branch 'master' of https://github.com/danog/MadelineProto
This commit is contained in:
commit
9a7cda471d
@ -552,7 +552,9 @@ trait FilesHandler
|
||||
$size = $end - $offset;
|
||||
$part_size = 512 * 1024;
|
||||
$percent = 0;
|
||||
if (isset($info['InputFileLocation']['dc_id'])) $this->API->switch_dc($info['InputFileLocation']['dc_id']);
|
||||
if (isset($info['InputFileLocation']['dc_id'])) {
|
||||
$this->API->switch_dc($info['InputFileLocation']['dc_id']);
|
||||
}
|
||||
|
||||
while ($percent < 100) {
|
||||
$real_part_size = ($offset + $part_size > $end) ? $part_size - (($offset + $part_size) - $end) : $part_size;
|
||||
|
Loading…
Reference in New Issue
Block a user