Not ever hashed takes higher priority than partially downloaded
This commit is contained in:
parent
e6ffa95fb4
commit
db0232e03f
|
@ -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 '.'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue