1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00

Fixed: Removing torrents from Vuze

Fixes #3951
This commit is contained in:
Mark McDowall 2020-09-15 21:35:26 -07:00
parent eb0bce8dbf
commit d0c0720578

View File

@ -24,6 +24,11 @@ public Vuze(ITransmissionProxy proxy,
{ {
} }
public override void RemoveItem(string downloadId, bool deleteData)
{
_proxy.RemoveTorrent(downloadId, deleteData, Settings);
}
protected override OsPath GetOutputPath(OsPath outputPath, TransmissionTorrent torrent) protected override OsPath GetOutputPath(OsPath outputPath, TransmissionTorrent torrent)
{ {
// Vuze has similar behavior as uTorrent: // Vuze has similar behavior as uTorrent: