Fix crash when adding magnet links

This commit is contained in:
Christophe Dumez 2010-06-24 18:16:59 +00:00
parent 907a17a73b
commit 2104e4e2ce

View file

@ -472,7 +472,7 @@ void torrentAdditionDialog::renameSelectedFile() {
save_path = save_path.replace("\\", "/"); save_path = save_path.replace("\\", "/");
#endif #endif
save_path = misc::expandPath(save_path); save_path = misc::expandPath(save_path);
if(t->num_files() == 1) { if(!is_magnet && t->num_files() == 1) {
// Remove file name // Remove file name
QStringList parts = save_path.split("/", QString::SkipEmptyParts); QStringList parts = save_path.split("/", QString::SkipEmptyParts);
const QString single_file_name = parts.takeLast(); const QString single_file_name = parts.takeLast();