mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 20:59:29 +00:00
Add file size limit error
This commit is contained in:
parent
077e7c00d5
commit
ee47c21eed
@ -1123,6 +1123,7 @@ 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"
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user