From 702665f9f3e3cb3dac9191cede69ee6fd3e4c24f Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 22 Aug 2014 01:25:18 +1000 Subject: [PATCH] Remove torrent from download strategy when dropped --- client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client.go b/client.go index 7d082367..22265735 100644 --- a/client.go +++ b/client.go @@ -983,6 +983,7 @@ func (me *Client) DropTorrent(infoHash InfoHash) (err error) { panic(err) } delete(me.torrents, infoHash) + me.downloadStrategy.TorrentStopped(t) return } -- 2.48.1