From cbcccf0d9d5b013fde5d143a3d99293840bd051a Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 5 Oct 2017 22:55:32 -0400 Subject: [PATCH] Fix Bug with TrackDownloaded Notifications --- src/NzbDrone.Core/Notifications/NotificationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index 52e21b622..d19b10c49 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -56,7 +56,7 @@ namespace NzbDrone.Core.Notifications var trackTitles = string.Join(" + ", tracks.Select(e => e.Title)); - return string.Format("{0} - {1} - [{4}]", + return string.Format("{0} - {1} - [{2}]", artist.Name, trackTitles, qualityString); @@ -72,7 +72,7 @@ namespace NzbDrone.Core.Notifications 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; }