From c17cad65a8ec1e180eab5eb1f0e05bee21c9e047 Mon Sep 17 00:00:00 2001 From: cpanel10x <96235876+dlcvietnam@users.noreply.github.com> Date: Sat, 10 Dec 2022 00:52:50 +0700 Subject: [PATCH] Fix error cache #173 --- ytdlbot/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ytdlbot/tasks.py b/ytdlbot/tasks.py index 07f5227..e760cbc 100644 --- a/ytdlbot/tasks.py +++ b/ytdlbot/tasks.py @@ -357,7 +357,7 @@ def gen_cap(bm, url, video_path): ) remain = bot_text.remaining_quota_caption(chat_id) worker = get_dl_source() - cap = f"{user_info}\n`{file_name}`\n\n{url}\n\nInfo: {meta['width']}x{meta['height']} {file_size}\t" \ + cap = f"{user_info}\n{file_name}\n\n{url}\n\nInfo: {meta['width']}x{meta['height']} {file_size}\t" \ f"{meta['duration']}s\n{remain}\n{worker}\n{bot_text.custom_text}" return cap, meta