Not ever hashed takes higher priority than partially downloaded

This commit is contained in:
Matt Joiner 2014-12-01 03:28:25 -06:00
parent e6ffa95fb4
commit db0232e03f
1 changed files with 2 additions and 2 deletions

View File

@ -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 '.'
}