From 6447966e91de96127e732c134ac8a774d5aaaf8e Mon Sep 17 00:00:00 2001 From: DC Date: Tue, 5 Apr 2016 19:27:39 -0700 Subject: [PATCH] Hide DL status on paused torrents Fixes #309 --- renderer/views/torrent-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderer/views/torrent-list.js b/renderer/views/torrent-list.js index e065e8cc..3b75f62f 100644 --- a/renderer/views/torrent-list.js +++ b/renderer/views/torrent-list.js @@ -70,7 +70,7 @@ function TorrentList (state) { // If it's downloading/seeding then show progress info var prog = torrentSummary.progress - if (torrentSummary.state !== 'paused' && prog) { + if (torrentSummary.status !== 'paused' && prog) { var progress = Math.floor(100 * prog.progress) var downloaded = prettyBytes(prog.downloaded) var total = prettyBytes(prog.length || 0)