mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
- BUGFIX: Trackers are now displayed for torrents without metadata
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
- BUGFIX: Minor cosmetic fix to program preferences
|
- BUGFIX: Minor cosmetic fix to program preferences
|
||||||
- BUGFIX: Fix "Temp path" button in program preferences
|
- BUGFIX: Fix "Temp path" button in program preferences
|
||||||
- BUGFIX: Handle paths with [~, ., ..] properly
|
- BUGFIX: Handle paths with [~, ., ..] properly
|
||||||
|
- BUGFIX: Trackers are now displayed for torrents without metadata
|
||||||
|
|
||||||
* Fri Dec 18 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.2
|
* Fri Dec 18 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.2
|
||||||
- BUGFIX: Fix .qbittorrent folder not being created (critical bug introduced in v2.0.1 that makes qBittorrent unusuable for new users)
|
- BUGFIX: Fix .qbittorrent folder not being created (critical bug introduced in v2.0.1 that makes qBittorrent unusuable for new users)
|
||||||
|
|||||||
@@ -142,13 +142,13 @@ public slots:
|
|||||||
++nb_pex;
|
++nb_pex;
|
||||||
}
|
}
|
||||||
// load DHT information
|
// load DHT information
|
||||||
if(properties->getBTSession()->isDHTEnabled() && !h.priv()) {
|
if(properties->getBTSession()->isDHTEnabled() && h.has_metadata() && !h.priv()) {
|
||||||
dht_item->setText(COL_STATUS, tr("Working"));
|
dht_item->setText(COL_STATUS, tr("Working"));
|
||||||
} else {
|
} else {
|
||||||
dht_item->setText(COL_STATUS, tr("Disabled"));
|
dht_item->setText(COL_STATUS, tr("Disabled"));
|
||||||
}
|
}
|
||||||
dht_item->setText(COL_PEERS, QString::number(nb_dht));
|
dht_item->setText(COL_PEERS, QString::number(nb_dht));
|
||||||
if(h.priv()) {
|
if(h.has_metadata() && h.priv()) {
|
||||||
dht_item->setText(COL_MSG, tr("This torrent is private"));
|
dht_item->setText(COL_MSG, tr("This torrent is private"));
|
||||||
}
|
}
|
||||||
// Load PeX Information
|
// Load PeX Information
|
||||||
|
|||||||
Reference in New Issue
Block a user