x = """Text"""
def job():
app.send_message("Group3", x)
app.send_message("Group2", x)
app.send_message("Group1", x)
It has an interval of 30 seconds, every 30 seconds it sends a message, but it gets stuck in for example Group2, because the group has a slow mode(timer of 15min). And after that it doesn't proceed to Group1. Then it sends message again to Group3 and gets stuck on Group2 again. How should I make it ignore the error/slowmode and proceed to Group1?
Appreciate it!