fixed disk not being scanned during series refresh.

This commit is contained in:
kay.one 2013-07-13 13:21:34 -07:00
commit 4456d3cbe0
3 changed files with 6 additions and 50 deletions

View file

@ -1,17 +0,0 @@
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.MediaFiles.Commands
{
public class DiskScanCommand : ICommand
{
public int? SeriesId { get; private set; }
public DiskScanCommand(int seriesId = 0)
{
if (seriesId != 0)
{
SeriesId = seriesId;
}
}
}
}