From 857362e80b5834694341eb9b1b98e367ace667b8 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Thu, 15 Jun 2023 18:12:05 +0800 Subject: [PATCH] fix --- app/chain/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/chain/download.py b/app/chain/download.py index 20394730..edc0cc99 100644 --- a/app/chain/download.py +++ b/app/chain/download.py @@ -488,5 +488,5 @@ class DownloadChain(ChainBase): for torrent in torrents: messages.append(f"{torrent.title} " f"{StringUtils.str_filesize(torrent.size)} " - f"{round(torrent.progress) * 100}%") + f"{round(torrent.progress * 100, 1)}%") self.post_message(title=title, text="\n".join(messages))