Fix issue with TorrentActions treating actions as all downloaded.

This commit is contained in:
ahjephson
2025-02-10 08:55:46 +00:00
parent a29e64fc1b
commit 12f81c5978

View File

@@ -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;
}