Browse Source

BUGFIX: Fix moving of a torrent to an unexisting directory

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
56b88661bc
  1. 4
      src/qtlibtorrent/qtorrenthandle.cpp

4
src/qtlibtorrent/qtorrenthandle.cpp

@ -633,6 +633,10 @@ void QTorrentHandle::move_storage(QString new_path) const { @@ -633,6 +633,10 @@ void QTorrentHandle::move_storage(QString new_path) const {
Q_ASSERT(h.is_valid());
if(QDir(save_path()) == QDir(new_path)) return;
TorrentPersistentData::setPreviousSavePath(hash(), save_path());
// Create destination directory if necessary
// or move_storage() will fail...
QDir().mkpath(new_path);
// Actually move the storage
h.move_storage(new_path.toLocal8Bit().constData());
}

Loading…
Cancel
Save