From 0e68f9a6d8300915abcadc2743e27c92d1ca7033 Mon Sep 17 00:00:00 2001 From: thedragonsinn <98635854+thedragonsinn@users.noreply.github.com> Date: Tue, 7 Nov 2023 17:30:40 +0530 Subject: [PATCH] progress delay incrased to % 50 --- 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 b769ee6..064263c 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"] % 10: + if PROGRESS_STR_DICT["count"] % 50: PROGRESS_STR_DICT["count"] += 1 return await response.edit(resp_str)