mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Raw-HD
New: Raw-HD (TrollHD) support added Fixed: Parser for TrollHD releases from NzbIndex and NzbClub #ND-115 fixed #ND-115 comment Max size will be ignored for Raw-HD releases, since they are always very large anyways
This commit is contained in:
parent
b8fff306bf
commit
106ea1d04b
8 changed files with 48 additions and 18 deletions
|
@ -26,8 +26,8 @@ namespace NzbDrone.Api.QualityType
|
|||
{
|
||||
if (request.Id == 0)
|
||||
{
|
||||
var profiles = _qualityTypeProvider.All().Where(qualityProfile => qualityProfile.QualityTypeId > 0).ToList();
|
||||
return Mapper.Map<List<Core.Repository.Quality.QualityType>, List<QualityTypeModel>>(profiles);
|
||||
var types = _qualityTypeProvider.All().Where(qualityType => qualityType.QualityTypeId != 0 && qualityType.QualityTypeId != 10).ToList();
|
||||
return Mapper.Map<List<Core.Repository.Quality.QualityType>, List<QualityTypeModel>>(types);
|
||||
}
|
||||
|
||||
var type = _qualityTypeProvider.Get(request.Id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue