mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Fixes #1944: uploading file from memory
This commit is contained in:
parent
af3a98057f
commit
916569cdc5
@ -7250,7 +7250,7 @@ class InputFile:
|
||||
_file = open(file, 'rb')
|
||||
return _file, os.path.basename(_file.name)
|
||||
elif isinstance(file, IOBase):
|
||||
return file, os.path.basename(file.name)
|
||||
return file, service_utils.generate_random_token()
|
||||
elif isinstance(file, Path):
|
||||
_file = open(file, 'rb')
|
||||
return _file, os.path.basename(_file.name)
|
||||
|
Loading…
Reference in New Issue
Block a user