mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
Fix peer flags.
This commit is contained in:
@@ -440,7 +440,7 @@ QString PeerListWidget::getFlags(const peer_info& peer)
|
|||||||
QString flags;
|
QString flags;
|
||||||
if (peer.flags & peer_info::interesting) {
|
if (peer.flags & peer_info::interesting) {
|
||||||
//d = Your client wants to download, but peer doesn't want to send (interested and choked)
|
//d = Your client wants to download, but peer doesn't want to send (interested and choked)
|
||||||
if (peer.flags & peer_info::choked)
|
if (peer.flags & peer_info::remote_choked)
|
||||||
flags += "d ";
|
flags += "d ";
|
||||||
else //D = Currently downloading (interested and not choked)
|
else //D = Currently downloading (interested and not choked)
|
||||||
flags += "D ";
|
flags += "D ";
|
||||||
@@ -448,7 +448,7 @@ QString PeerListWidget::getFlags(const peer_info& peer)
|
|||||||
|
|
||||||
if (peer.flags & peer_info::remote_interested) {
|
if (peer.flags & peer_info::remote_interested) {
|
||||||
//u = Peer wants your client to upload, but your client doesn't want to (interested and choked)
|
//u = Peer wants your client to upload, but your client doesn't want to (interested and choked)
|
||||||
if (peer.flags & peer_info::remote_choked)
|
if (peer.flags & peer_info::choked)
|
||||||
flags += "u ";
|
flags += "u ";
|
||||||
else //U = Currently uploading (interested and not choked)
|
else //U = Currently uploading (interested and not choked)
|
||||||
flags += "U ";
|
flags += "U ";
|
||||||
|
|||||||
Reference in New Issue
Block a user