mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixed updating of Default Qualities in CentralDispatch.
Default Quality can now be set through Settings/Quality using a drop down list. Fixed QualityType for BDRip (was sharing a value with DVD).
This commit is contained in:
parent
48e5b36936
commit
d083d653db
8 changed files with 75 additions and 42 deletions
|
@ -21,19 +21,19 @@ namespace NzbDrone.Core.Repository.Quality
|
|||
/// <summary>
|
||||
/// SD File (HD Source)
|
||||
/// </summary>
|
||||
BDRip = 2,
|
||||
BDRip = 3,
|
||||
/// <summary>
|
||||
/// HD File (HDTV Source)
|
||||
/// </summary>
|
||||
HDTV = 3,
|
||||
HDTV = 4,
|
||||
/// <summary>
|
||||
/// HD File (Online Source)
|
||||
/// </summary>
|
||||
WEBDL = 4,
|
||||
WEBDL = 5,
|
||||
/// <summary>
|
||||
/// HD File (Blu-ray Source could be 1080p or 720p)
|
||||
/// </summary>
|
||||
Bluray = 5,
|
||||
Bluray = 6,
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue