mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Fixed: Handle checkingResumeData state form qBittorrent
(cherry picked from commit 8d8a16225ff7772ccb57784f272ca31e28bb8455)
This commit is contained in:
parent
c70ab07ee0
commit
c9c1df63a3
2 changed files with 2 additions and 0 deletions
|
@ -225,6 +225,7 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.QBittorrentTests
|
||||||
[TestCase("checkingDL")]
|
[TestCase("checkingDL")]
|
||||||
[TestCase("checkingUP")]
|
[TestCase("checkingUP")]
|
||||||
[TestCase("metaDL")]
|
[TestCase("metaDL")]
|
||||||
|
[TestCase("checkingResumeData")]
|
||||||
public void queued_item_should_have_required_properties(string state)
|
public void queued_item_should_have_required_properties(string state)
|
||||||
{
|
{
|
||||||
var torrent = new QBittorrentTorrent
|
var torrent = new QBittorrentTorrent
|
||||||
|
|
|
@ -251,6 +251,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
||||||
case "queuedDL": // queuing is enabled and torrent is queued for download
|
case "queuedDL": // queuing is enabled and torrent is queued for download
|
||||||
case "checkingDL": // same as checkingUP, but torrent has NOT finished downloading
|
case "checkingDL": // same as checkingUP, but torrent has NOT finished downloading
|
||||||
case "checkingUP": // torrent has finished downloading and is being checked. Set when `recheck torrent on completion` is enabled. In the event the check fails we shouldn't treat it as completed.
|
case "checkingUP": // torrent has finished downloading and is being checked. Set when `recheck torrent on completion` is enabled. In the event the check fails we shouldn't treat it as completed.
|
||||||
|
case "checkingResumeData": // torrent is checking resume data on load
|
||||||
item.Status = DownloadItemStatus.Queued;
|
item.Status = DownloadItemStatus.Queued;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue