mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-26 07:42:49 +00:00
Fix String Format Error in NotificationService
This commit is contained in:
parent
7776862359
commit
2f74ad6540
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ private string GetMessage(Artist artist, List<Album> albums, QualityModel qualit
|
||||||
|
|
||||||
var albumTitles = string.Join(" + ", albums.Select(e => e.Title));
|
var albumTitles = string.Join(" + ", albums.Select(e => e.Title));
|
||||||
|
|
||||||
return string.Format("{0} - {1} - [{4}]",
|
return string.Format("{0} - {1} - [{2}]",
|
||||||
artist.Name,
|
artist.Name,
|
||||||
albumTitles,
|
albumTitles,
|
||||||
qualityString);
|
qualityString);
|
||||||
|
|
Loading…
Reference in a new issue