Не могу понять, почему пост, который состоит из фото и текста, не копируется в мой канал?
Не могу понять, почему пост, который состоит из фото и текста, не копируется в мой канал. В то время как посты, содержащие только текст или только фото, копируются без проблем.
caption = message.text or (message.caption if hasattr(message, 'caption') else "")
if message. Text:
await bot.send_message(chat_id=DEST_CHANNEL, text=message. Text)
if message. Photo:
file_path = await message.download_media()
with open(file_path, "rb") as file:
if message.text:
await bot.send_photo(chat_id=DEST_CHANNEL, photo=file, caption=caption)
else:
await bot.send_photo(chat_id=DEST_CHANNEL, photo=file)
elif message. Video:
file_path = await message.download_media()
with open(file_path, "rb") as file:
await bot.send_video(chat_id=DEST_CHANNEL, video=file, caption=caption)