mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 20:44:15 +00:00
- Fixed bug in new temp dir feature
* Completed torrents were moved too
This commit is contained in:
parent
a8d627e1df
commit
55743021e8
@ -918,7 +918,8 @@ void bittorrent::setDefaultTempPath(QString temppath) {
|
||||
for(torrentIT = torrents.begin(); torrentIT != torrents.end(); torrentIT++) {
|
||||
QTorrentHandle h = QTorrentHandle(*torrentIT);
|
||||
if(!h.is_valid()) continue;
|
||||
h.move_storage(temppath);
|
||||
if(!h.is_seed())
|
||||
h.move_storage(temppath);
|
||||
}
|
||||
}
|
||||
defaultTempPath = temppath;
|
||||
|
Loading…
x
Reference in New Issue
Block a user