From 2f74ad6540157b898fd430120ec5f453542e07b1 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 15 Oct 2017 14:16:11 -0400 Subject: [PATCH] Fix String Format Error in NotificationService --- src/NzbDrone.Core/Notifications/NotificationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index d19b10c49..8c3c39f52 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -38,7 +38,7 @@ namespace NzbDrone.Core.Notifications var albumTitles = string.Join(" + ", albums.Select(e => e.Title)); - return string.Format("{0} - {1} - [{4}]", + return string.Format("{0} - {1} - [{2}]", artist.Name, albumTitles, qualityString);