Fix String Format Error in NotificationService

This commit is contained in:
Qstick
2017-10-15 14:16:11 -04:00
committed by GitHub
parent 7776862359
commit 2f74ad6540

View File

@@ -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);