mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
Enforce comment spacing with Stylecop
This commit is contained in:
@@ -197,7 +197,7 @@ namespace NzbDrone.Core.Download.Pending
|
||||
}
|
||||
}
|
||||
|
||||
//Return best quality release for each episode
|
||||
// Return best quality release for each episode
|
||||
var deduped = queued.GroupBy(q => q.Episode.Id).Select(g =>
|
||||
{
|
||||
var series = g.First().Series;
|
||||
@@ -381,8 +381,8 @@ namespace NzbDrone.Core.Download.Pending
|
||||
var compare = new QualityModelComparer(profile).Compare(remoteEpisode.ParsedEpisodeInfo.Quality,
|
||||
existingReport.RemoteEpisode.ParsedEpisodeInfo.Quality);
|
||||
|
||||
//Only remove lower/equal quality pending releases
|
||||
//It is safer to retry these releases on the next round than remove it and try to re-add it (if its still in the feed)
|
||||
// Only remove lower/equal quality pending releases
|
||||
// It is safer to retry these releases on the next round than remove it and try to re-add it (if its still in the feed)
|
||||
if (compare >= 0)
|
||||
{
|
||||
_logger.Debug("Removing previously pending release, as it was grabbed.");
|
||||
|
||||
Reference in New Issue
Block a user