Switch to stopping torrents instead of removing

This commit is contained in:
lordwelch 2018-01-06 22:25:39 -07:00
parent b47d18b48a
commit a5bf6ae19f

View File

@ -177,7 +177,9 @@ func removeDownloads(hash []string) {
}
}
}
Transmission.RemoveTorrents(false, thash...)
for _, torrent := range thash {
torrent.Stop()
}
}
func initialize() {