if tags:
message_text = message.message.lower() # Convert to lowercase for case-insensitive comparison
if not any(tag.lower() in message_text for tag in tags):
continue
else:
print(f"{tags=}")