[addon] update to show checking status as downloading

This commit is contained in:
TheBeastLT
2021-03-09 16:09:24 +01:00
parent 187972d7de
commit 80f34dabb0

View File

@@ -156,7 +156,7 @@ function statusOpening(torrent) {
}
function statusDownloading(torrent) {
return [4].includes(torrent.status) || ([2].includes(torrent.status) && torrent.peersConnected !== 0);
return [2, 4].includes(torrent.status);
}
function statusReady(torrent) {