diff --git a/Changelog b/Changelog index b847e9332..fda3b7cf5 100644 --- a/Changelog +++ b/Changelog @@ -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 - v2.2.5 - BUGFIX: Fix crash when adding a new torrent label diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index e33d8e0a2..7922d6b1d 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -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(a.get())) {