Fixes downloading a movie. However, now all downloaders except QBittorrent are non functional until they get fixed. See #14

This commit is contained in:
Leonardo Galli
2017-01-02 19:20:32 +01:00
parent 2a3b0304cb
commit 0e02171938
10 changed files with 422 additions and 16 deletions
@@ -57,6 +57,7 @@ namespace NzbDrone.Core.Download
get;
}
public abstract string Download(RemoteEpisode remoteEpisode);
public abstract IEnumerable<DownloadClientItem> GetItems();
public abstract void RemoveItem(string downloadId, bool deleteData);
@@ -147,5 +148,7 @@ namespace NzbDrone.Core.Download
return null;
}
public abstract string Download(RemoteMovie remoteMovie);
}
}