Thanks, that really looks better

Co-Authored-By: TolichP <sanekprivor@yandex.ru>
This commit is contained in:
Dan 2018-10-21 14:41:30 +07:00 committed by GitHub
parent ee47c21eed
commit fa5759b07b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1123,7 +1123,8 @@ class Client(Methods, BaseClient):
progress_args: tuple = ()):
part_size = 512 * 1024
file_size = os.path.getsize(path)
assert file_size < 1500 * 1024 * 1024, "Couldn't upload file bigger 1500MiB"
if file_size > 1500 * 1024 * 1024:
raise ValueError("Telegram doesn't support uploading files bigger than 1500 MiB")
file_total_parts = int(math.ceil(file_size / part_size))
is_big = True if file_size > 10 * 1024 * 1024 else False
is_missing_part = True if file_id is not None else False