fix: don't autodelete queued torrents
This commit is contained in:
parent
a4f20fd3a4
commit
5ba630ff52
1 changed files with 1 additions and 1 deletions
|
|
@ -523,7 +523,7 @@ public class Torrents(
|
||||||
{
|
{
|
||||||
var rdTorrent = rdTorrents.FirstOrDefault(m => m.Id == torrent.RdId);
|
var rdTorrent = rdTorrents.FirstOrDefault(m => m.Id == torrent.RdId);
|
||||||
|
|
||||||
if (rdTorrent == null && Settings.Get.Provider.AutoDelete)
|
if (rdTorrent == null && Settings.Get.Provider.AutoDelete && torrent.RdStatus != TorrentStatus.Queued)
|
||||||
{
|
{
|
||||||
await Delete(torrent.TorrentId, true, false, true);
|
await Delete(torrent.TorrentId, true, false, true);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue