BUGFIX: Stop rechecking torrents when they are moved

This commit is contained in:
Christophe Dumez
2010-04-10 15:55:57 +00:00
parent f243b8535a
commit 3542980e50
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
- BUGFIX: Added support for single-thread boost
- BUGFIX: Remove old folder when moving a torrent
- BUGFIX: Improved reliability of torrent moving
- BUGFIX: Stop rechecking torrents when they are moved
* Wed Apr 07 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.2.5
- BUGFIX: Fix crash when adding a new torrent label

View File

@@ -1970,7 +1970,7 @@ void Bittorrent::addConsoleMessage(QString msg, QString) {
QDir().rmpath(old_save_path);
TorrentPersistentData::saveSavePath(h.hash(), new_save_path);
emit savePathChanged(h);
h.force_recheck(); //XXX: Required by libtorrent for now
//h.force_recheck();
}
}
else if (metadata_received_alert* p = dynamic_cast<metadata_received_alert*>(a.get())) {