Add movie year to NotificationService (#489)

This commit is contained in:
Tim Turner 2017-01-27 20:32:16 -05:00 committed by GitHub
parent a340bc4da3
commit e2d6e39168
1 changed files with 2 additions and 1 deletions

View File

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