From 9f30aba2b3018dc0d5f032599a6620a0dbf786c5 Mon Sep 17 00:00:00 2001 From: thalieht Date: Thu, 11 Mar 2021 16:48:51 +0200 Subject: [PATCH] Fix incorrect seeding time string in WebUI General tab --- src/webui/www/private/scripts/prop-general.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/www/private/scripts/prop-general.js b/src/webui/www/private/scripts/prop-general.js index 07a93c6e8..f820e553a 100644 --- a/src/webui/www/private/scripts/prop-general.js +++ b/src/webui/www/private/scripts/prop-general.js @@ -98,7 +98,7 @@ window.qBittorrent.PropGeneral = (function() { let temp; // Update Torrent data if (data.seeding_time > 0) - temp = "QBT_TR(%1 (%2 this session))QBT_TR[CONTEXT=PropertiesWidget]" + temp = "QBT_TR(%1 (seeded for %2))QBT_TR[CONTEXT=PropertiesWidget]" .replace("%1", window.qBittorrent.Misc.friendlyDuration(data.time_elapsed)) .replace("%2", window.qBittorrent.Misc.friendlyDuration(data.seeding_time)); else