From 6eaf0161079463fb1c451b217dfd3636237392c7 Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Fri, 16 Feb 2024 05:52:17 +0100 Subject: [PATCH] Requeue if popd and continuing --- internal/torrent/fixer.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/torrent/fixer.go b/internal/torrent/fixer.go index 4bc4b4c..3fe3386 100644 --- a/internal/torrent/fixer.go +++ b/internal/torrent/fixer.go @@ -41,6 +41,7 @@ func (t *TorrentManager) processFixers(instances []realdebrid.Torrent) { toDelete = append(toDelete, id) case "repaired": // this torrent contains broken files if instance.Progress != 100 { + t.fixers.Set(id, "repaired") // requeue the fixer continue } torrent := t.getMoreInfo(instance)