1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

- Fixed bug in new temp dir feature

* Completed torrents were moved too
This commit is contained in:
Christophe Dumez 2009-03-17 17:38:41 +00:00
parent a8d627e1df
commit 55743021e8

View File

@ -918,6 +918,7 @@ void bittorrent::setDefaultTempPath(QString temppath) {
for(torrentIT = torrents.begin(); torrentIT != torrents.end(); torrentIT++) { for(torrentIT = torrents.begin(); torrentIT != torrents.end(); torrentIT++) {
QTorrentHandle h = QTorrentHandle(*torrentIT); QTorrentHandle h = QTorrentHandle(*torrentIT);
if(!h.is_valid()) continue; if(!h.is_valid()) continue;
if(!h.is_seed())
h.move_storage(temppath); h.move_storage(temppath);
} }
} }