Wrong type

This commit is contained in:
lordwelch 2018-01-06 18:39:56 -07:00
parent da7e541666
commit de0b93001c

View File

@ -173,7 +173,7 @@ func removeDownloads(hash []string) {
if err != nil {
panic(err)
}
thash := make([]string, len(hash))
thash := make([]*transmission.Torrent, len(hash))
// Removes torrents from transmission that are not selected this time
for _, CHash := range hash {
v, ok := tmap[CHash]