mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -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
|
@ -48,6 +48,11 @@ namespace NzbDrone.Core.Providers
|
|||
return profiles;
|
||||
}
|
||||
|
||||
public QualityProfile Find(int profileId)
|
||||
{
|
||||
return _sonicRepo.Single<QualityProfile>(q => q.ProfileId == profileId);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue