mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
PostDownloadProvider broken down further.
Will try to reprocess _NzbDrone_ directories each pass, but will mark with an error when possible. Attempt to process _UNPACK_ and _FAILED_ directories 30 minutes after first detected by NzbDrone (to give SAB time to unpack properly before processing).
This commit is contained in:
parent
04ed22db55
commit
8cac84b4ad
9 changed files with 362 additions and 43 deletions
15
NzbDrone.Core/Model/PostDownloadInfoModel.cs
Normal file
15
NzbDrone.Core/Model/PostDownloadInfoModel.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public class PostDownloadInfoModel
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public DateTime Added { get; set; }
|
||||
public PostDownloadStatusType Status { get; set; }
|
||||
}
|
||||
}
|
|
@ -20,6 +20,16 @@
|
|||
/// <summary>
|
||||
/// Processed
|
||||
/// </summary>
|
||||
Processed = 3
|
||||
Processed = 3,
|
||||
|
||||
/// <summary>
|
||||
/// InvalidSeries
|
||||
/// </summary>
|
||||
InvalidSeries = 4,
|
||||
|
||||
/// <summary>
|
||||
/// ParseError
|
||||
/// </summary>
|
||||
ParseError = 5
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue