From 12f81c597841b4bd56fd94e2afe5c759c8d37f05 Mon Sep 17 00:00:00 2001 From: ahjephson Date: Mon, 10 Feb 2025 08:55:46 +0000 Subject: [PATCH] Fix issue with TorrentActions treating actions as all downloaded. --- Lantean.QBTMud/Components/TorrentActions.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lantean.QBTMud/Components/TorrentActions.razor.cs b/Lantean.QBTMud/Components/TorrentActions.razor.cs index d7fcab8..8556340 100644 --- a/Lantean.QBTMud/Components/TorrentActions.razor.cs +++ b/Lantean.QBTMud/Components/TorrentActions.razor.cs @@ -441,7 +441,7 @@ namespace Lantean.QBTMud.Components thereAreFirstLastPiecePrio = true; } - if (torrent.Progress > 0.999999) // not downloaded + if (torrent.Progress < 0.999999) // not downloaded { allAreDownloaded = false; }