diff --git a/aiogram/client/bot.py b/aiogram/client/bot.py index 16581da0..d8762dba 100644 --- a/aiogram/client/bot.py +++ b/aiogram/client/bot.py @@ -292,7 +292,8 @@ class Bot(ContextInstanceMixin["Bot"]): try: if isinstance(destination, (str, pathlib.Path)): - return await self.__download_file(destination=destination, stream=stream) + await self.__download_file(destination=destination, stream=stream) + return None else: return await self.__download_file_binary_io( destination=destination, seek=seek, stream=stream