mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
caa6a3858b
Fixed: Show a warning in Queue when drone is unable to import due to a name mismatch Fixed: Better UI messages for Queue when there is an error or warning
13 lines
215 B
C#
13 lines
215 B
C#
namespace NzbDrone.Core.Download
|
|
{
|
|
public enum DownloadItemStatus
|
|
{
|
|
Queued = 0,
|
|
Paused = 1,
|
|
Downloading = 2,
|
|
Completed = 3,
|
|
Failed = 4,
|
|
Warning = 5
|
|
}
|
|
}
|