Теперь бот не удаляет сообщения от каналов, если чат является чатом для комментариев.
This commit is contained in:
parent
738a10ca6c
commit
d874d00dc5
|
@ -8,5 +8,5 @@ from loader import dp
|
|||
|
||||
@dp.message_handler(IsGroup(), content_types=types.ContentTypes.ANY)
|
||||
async def bot_echo_all(message: types.Message, state: FSMContext):
|
||||
if message.sender_chat is not None:
|
||||
if message.sender_chat is not None and not message.is_automatic_forward:
|
||||
await message.delete()
|
Loading…
Reference in New Issue
Block a user