Browse Source

Make sure invalid torrent are removed from the transfer list

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
62d872984b
  1. 9
      src/transferlistwidget.cpp

9
src/transferlistwidget.cpp

@ -459,6 +459,7 @@ void TransferListWidget::refreshList() {
} }
} }
QStringList bad_hashes;
for(int i=0; i<listModel->rowCount(); ++i) { for(int i=0; i<listModel->rowCount(); ++i) {
int s = updateTorrent(i); int s = updateTorrent(i);
switch(s) { switch(s) {
@ -484,10 +485,18 @@ void TransferListWidget::refreshList() {
++nb_seeding; ++nb_seeding;
++nb_inactive; ++nb_inactive;
break; break;
case STATE_INVALID:
bad_hashes << getHashFromRow(i);
break;
default: default:
break; break;
} }
} }
// Remove bad torrents from list
foreach(QString hash, bad_hashes) {
deleteTorrent(getRowFromHash(hash), false);
}
// Update status filters counters
emit torrentStatusUpdate(nb_downloading, nb_seeding, nb_active, nb_inactive); emit torrentStatusUpdate(nb_downloading, nb_seeding, nb_active, nb_inactive);
repaint(); repaint();
} }

Loading…
Cancel
Save