From 6a5d68351ca0750546da89507a6b6617d3c9f464 Mon Sep 17 00:00:00 2001 From: bakatrouble Date: Sun, 13 Aug 2023 22:25:41 +0300 Subject: [PATCH] add more delay between sending posts --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 0166cce..26203af 100644 --- a/main.py +++ b/main.py @@ -123,7 +123,7 @@ async def check_updates(): if already_sent[i]: continue await send_post(posts[i], tag_list) - await sleep(.1) + await sleep(1) @dp.message_handler(filters.IDFilter(chat_id=user_ids), commands=['add'])