Обновление

This commit is contained in:
2024-04-28 20:05:23 +04:00
parent 59c685ba49
commit bd989270bc
2 changed files with 39 additions and 26 deletions

View File

@ -3,7 +3,7 @@ from aiogram.types import Message, MessageEntity, PhotoSize, ReactionTypeEmoji
from app.utils.send_to_notion import send_to_notion
async def parse_message(message: Message):
await send_to_notion(message)
async def parse_message(message: Message, album=None):
await send_to_notion(message, album)
await message.react([ReactionTypeEmoji(emoji="👌")])