mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixed a bug with converting default quality profile from config when adding a new series.
Re-enabled the RssSyncTimer so it will run an RSS Sync when fired.
This commit is contained in:
parent
da79ad147e
commit
735668f7b3
4 changed files with 22 additions and 25 deletions
|
@ -74,7 +74,7 @@ namespace NzbDrone.Core.Providers
|
|||
|
||||
if (IsSeasonIgnored(episode))
|
||||
return false;
|
||||
|
||||
|
||||
if (!_series.QualityWanted(episode.SeriesId, episode.Quality))
|
||||
{
|
||||
Logger.Debug("Quality [{0}] is not wanted for: {1}", episode.Quality, episode.SeriesTitle);
|
||||
|
@ -86,7 +86,7 @@ namespace NzbDrone.Core.Providers
|
|||
episode.EpisodeId = dbEpisode.EpisodeId;
|
||||
|
||||
var epWithFiles = _sonicRepo.Single<Episode>(c => c.EpisodeId == episode.EpisodeId && c.Files.Count > 0);
|
||||
|
||||
|
||||
if (epWithFiles != null)
|
||||
{
|
||||
//If not null we need to see if this episode has the quality as the download (or if it is better)
|
||||
|
@ -104,7 +104,7 @@ namespace NzbDrone.Core.Providers
|
|||
return false;
|
||||
}
|
||||
|
||||
throw new NotImplementedException();
|
||||
return true;
|
||||
}
|
||||
|
||||
public void RefreshEpisodeInfo(int seriesId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue