Allow uploading files up to 2000 MiB in size

This commit is contained in:
Dan 2020-07-06 15:55:11 +02:00 committed by GitHub
parent 2adc01be7f
commit c196b90c9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1772,8 +1772,8 @@ class Client(Methods, BaseClient):
if file_size == 0:
raise ValueError("File size equals to 0 B")
if file_size > 1500 * 1024 * 1024:
raise ValueError("Telegram doesn't support uploading files bigger than 1500 MiB")
if file_size > 2000 * 1024 * 1024:
raise ValueError("Telegram doesn't support uploading files bigger than 2000 MiB")
file_total_parts = int(math.ceil(file_size / part_size))
is_big = True if file_size > 10 * 1024 * 1024 else False