mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
Quality moved to ObjectDb.
This commit is contained in:
@@ -3,13 +3,13 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using AutoMapper;
|
||||
using NzbDrone.Core.Repository.Quality;
|
||||
using NzbDrone.Core.Qualities;
|
||||
|
||||
namespace NzbDrone.Api.Resolvers
|
||||
{
|
||||
public class QualityTypesToIntResolver : ValueResolver<QualityTypes, Int32>
|
||||
public class QualityTypesToIntResolver : ValueResolver<Quality, Int32>
|
||||
{
|
||||
protected override int ResolveCore(QualityTypes source)
|
||||
protected override int ResolveCore(Quality source)
|
||||
{
|
||||
return source.Id;
|
||||
}
|
||||
|
Reference in New Issue
Block a user