1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-11-06 09:19:38 +02:00

Merge branch 'markus101'

Conflicts:
	NzbDrone.Web/NzbDrone.Web.csproj
	NzbDrone.Web/Views/Log/Index.cshtml
This commit is contained in:
kay.one
2011-04-21 21:03:59 -07:00
32 changed files with 1359 additions and 537 deletions

View File

@@ -21,9 +21,9 @@ namespace NzbDrone.Core.Providers
_sonicRepo = sonicRepo;
}
public virtual void Add(QualityProfile profile)
public virtual int Add(QualityProfile profile)
{
_sonicRepo.Add(profile);
return Convert.ToInt32(_sonicRepo.Add(profile));
}
public virtual void Update(QualityProfile profile)