I´m using python-telegram-bot 8 and my bot is not processing messages that are sent by other bots in a group
Works OK with other users (not bots)
why my bot, don't see other bots messages?
def main():
updater = Updater(bot_token)
dp = updater.dispatcher
dp.add_handler(MessageHandler(Filters.text,check_msg))
dp.add_handler(MessageHandler(Filters.video | Filters.photo | Filters.document, check_file))
dp.add_handler(MessageHandler(Filters.sticker, check_sticker))