Remove Series MediaFile Commands

This commit is contained in:
Qstick
2017-09-28 23:19:27 -04:00
parent ed3b47d76a
commit 04766bb786
5 changed files with 6 additions and 50 deletions
@@ -194,9 +194,9 @@ namespace NzbDrone.Core.MediaFiles
public void Execute(RescanArtistCommand message)
{
if (message.ArtistId.IsNotNullOrWhiteSpace())
if (message.ArtistId.HasValue)
{
var artist = _artistService.FindById(message.ArtistId);
var artist = _artistService.GetArtist(message.ArtistId.Value);
Scan(artist);
}