- BUGFIX: Trackers are now displayed for torrents without metadata

This commit is contained in:
Christophe Dumez
2009-12-22 15:40:05 +00:00
parent 20167c2276
commit 9989ec79c9
2 changed files with 3 additions and 2 deletions

View File

@@ -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)

View File

@@ -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