1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Add movie year to NotificationService (#496)

This commit is contained in:
Tim Turner
2017-01-28 09:42:37 -05:00
committed by GitHub
parent 5d2ef4786b
commit 76db305ffa

View File

@@ -80,8 +80,9 @@ namespace NzbDrone.Core.Notifications
qualityString += " Proper"; qualityString += " Proper";
} }
return string.Format("{0} [{1}]", return string.Format("{0} ({1}) [{2}]",
movie.Title, movie.Title,
movie.Year,
qualityString); qualityString);
} }