Fix Bug with TrackDownloaded Notifications

This commit is contained in:
Qstick 2017-10-05 22:55:32 -04:00
commit cbcccf0d9d

View file

@ -56,7 +56,7 @@ namespace NzbDrone.Core.Notifications
var trackTitles = string.Join(" + ", tracks.Select(e => e.Title)); var trackTitles = string.Join(" + ", tracks.Select(e => e.Title));
return string.Format("{0} - {1} - [{4}]", return string.Format("{0} - {1} - [{2}]",
artist.Name, artist.Name,
trackTitles, trackTitles,
qualityString); qualityString);
@ -72,7 +72,7 @@ namespace NzbDrone.Core.Notifications
if (definition.Tags.Intersect(artist.Tags).Any()) if (definition.Tags.Intersect(artist.Tags).Any())
{ {
_logger.Debug("Notification and series have one or more intersecting tags."); _logger.Debug("Notification and artist have one or more intersecting tags.");
return true; return true;
} }