From 2b1a6fa945920475135f2c1114004854f3f40219 Mon Sep 17 00:00:00 2001 From: thedragonsinn <98635854+thedragonsinn@users.noreply.github.com> Date: Tue, 7 Nov 2023 17:31:47 +0530 Subject: [PATCH] progress delay incrased to % 150 --- app/utils/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/helpers.py b/app/utils/helpers.py index 064263c..0456e7d 100644 --- a/app/utils/helpers.py +++ b/app/utils/helpers.py @@ -57,7 +57,7 @@ async def progress( if PROGRESS_STR_DICT[file_path].get("resp") != resp_str: PROGRESS_STR_DICT[file_path]["resp"] = resp_str PROGRESS_STR_DICT["count"] = PROGRESS_STR_DICT.get("count", 0) - if PROGRESS_STR_DICT["count"] % 50: + if PROGRESS_STR_DICT["count"] % 150: PROGRESS_STR_DICT["count"] += 1 return await response.edit(resp_str)