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:
markus101 2011-02-04 22:07:25 -08:00
commit d083d653db
8 changed files with 75 additions and 42 deletions

View file

@ -48,6 +48,11 @@ namespace NzbDrone.Core.Providers
return profiles;
}
public QualityProfile Find(int profileId)
{
return _sonicRepo.Single<QualityProfile>(q => q.ProfileId == profileId);
}
#endregion
}
}