mirror of
https://github.com/TheBeastLT/torrentio-scraper.git
synced 2026-04-19 13:12:05 +00:00
[addon] update to show checking status as downloading
This commit is contained in:
parent
187972d7de
commit
80f34dabb0
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue