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

- Optimize startup speed (do not resave fastresume data for torrents that were seeded in the previous session)

This commit is contained in:
Christophe Dumez 2010-02-04 17:19:00 +00:00
parent 1eca139db9
commit b80940ac4f

View File

@ -1823,6 +1823,8 @@ void Bittorrent::addConsoleMessage(QString msg, QString) {
h.move_storage(save_dir.path());
}
}
bool was_already_seeded = TorrentPersistentData::isSeed(hash);
if(!was_already_seeded)
h.save_resume_data();
// Check if there are torrent files inside
for(int i=0; i<h.get_torrent_info().num_files(); ++i) {
@ -1844,7 +1846,7 @@ void Bittorrent::addConsoleMessage(QString msg, QString) {
}
}
// Recheck if the user asked to
if(Preferences::recheckTorrentsOnCompletion() && !TorrentPersistentData::isSeed(hash)) {
if(Preferences::recheckTorrentsOnCompletion() && !was_already_seeded) {
// Remember finished state
TorrentPersistentData::saveSeedStatus(h);
h.force_recheck();