From a5bf6ae19f209eb42fad9d47ff37681d8e63e251 Mon Sep 17 00:00:00 2001 From: lordwelch Date: Sat, 6 Jan 2018 22:25:39 -0700 Subject: [PATCH] Switch to stopping torrents instead of removing --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 0817cf3..42821d7 100644 --- a/main.go +++ b/main.go @@ -177,7 +177,9 @@ func removeDownloads(hash []string) { } } } - Transmission.RemoveTorrents(false, thash...) + for _, torrent := range thash { + torrent.Stop() + } } func initialize() {