Browse Source

Fix issues with single file torrents

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
f8134b1a62
  1. 4
      src/torrentadditiondlg.cpp

4
src/torrentadditiondlg.cpp

@ -531,12 +531,12 @@ void torrentAdditionDialog::renameSelectedFile() {
} }
#endif #endif
// Check if there is at least one selected file // Check if there is at least one selected file
if(!is_magnet && allFiltered()){ if(!is_magnet && t->num_files() > 1 && allFiltered()){
QMessageBox::warning(0, tr("Invalid file selection"), tr("You must select at least one file in the torrent")); QMessageBox::warning(0, tr("Invalid file selection"), tr("You must select at least one file in the torrent"));
return; return;
} }
// save filtered files // save filtered files
if(!is_magnet) if(!is_magnet && t->num_files() > 1)
savePiecesPriorities(); savePiecesPriorities();
// Add to download list // Add to download list
QTorrentHandle h; QTorrentHandle h;

Loading…
Cancel
Save