mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-08 08:32:31 -06:00
BUGFIX: Fix moving of a torrent to an unexisting directory
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
- BUGFIX: Fix "torrent seeding after creation" feature
|
- BUGFIX: Fix "torrent seeding after creation" feature
|
||||||
- BUGFIX: The properties panel data would sometimes not match the selected torrent
|
- BUGFIX: The properties panel data would sometimes not match the selected torrent
|
||||||
- BUGFIX: Fix detection of files at final destination when temp dir is used
|
- BUGFIX: Fix detection of files at final destination when temp dir is used
|
||||||
|
- BUGFIX: Fix moving of a torrent to an unexisting directory
|
||||||
|
|
||||||
* Tue Oct 12 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.4.5
|
* Tue Oct 12 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.4.5
|
||||||
- BUGFIX: Remember torrent completion date correctly
|
- BUGFIX: Remember torrent completion date correctly
|
||||||
|
|||||||
@@ -629,6 +629,10 @@ void QTorrentHandle::move_storage(QString new_path) const {
|
|||||||
Q_ASSERT(h.is_valid());
|
Q_ASSERT(h.is_valid());
|
||||||
if(QDir(save_path()) == QDir(new_path)) return;
|
if(QDir(save_path()) == QDir(new_path)) return;
|
||||||
TorrentPersistentData::setPreviousSavePath(hash(), save_path());
|
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());
|
h.move_storage(new_path.toLocal8Bit().constData());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user