From db0232e03fadeb39bfc49167a7680a5ce81eab40 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Mon, 1 Dec 2014 03:28:25 -0600 Subject: [PATCH] Not ever hashed takes higher priority than partially downloaded --- torrent.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/torrent.go b/torrent.go index be9ca711..78162aa0 100644 --- a/torrent.go +++ b/torrent.go @@ -275,10 +275,10 @@ func (t *torrent) pieceStatusChar(index int) byte { return 'Q' case p.Hashing: return 'H' - case t.PiecePartiallyDownloaded(index): - return 'P' case !p.EverHashed: return '?' + case t.PiecePartiallyDownloaded(index): + return 'P' default: return '.' }