mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
- Optimize startup speed (do not resave fastresume data for torrents that were seeded in the previous session)
This commit is contained in:
@@ -1823,7 +1823,9 @@ void Bittorrent::addConsoleMessage(QString msg, QString) {
|
|||||||
h.move_storage(save_dir.path());
|
h.move_storage(save_dir.path());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
h.save_resume_data();
|
bool was_already_seeded = TorrentPersistentData::isSeed(hash);
|
||||||
|
if(!was_already_seeded)
|
||||||
|
h.save_resume_data();
|
||||||
// Check if there are torrent files inside
|
// Check if there are torrent files inside
|
||||||
for(int i=0; i<h.get_torrent_info().num_files(); ++i) {
|
for(int i=0; i<h.get_torrent_info().num_files(); ++i) {
|
||||||
QString torrent_relpath = misc::toQString(h.get_torrent_info().file_at(i).path);
|
QString torrent_relpath = misc::toQString(h.get_torrent_info().file_at(i).path);
|
||||||
@@ -1844,7 +1846,7 @@ void Bittorrent::addConsoleMessage(QString msg, QString) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Recheck if the user asked to
|
// Recheck if the user asked to
|
||||||
if(Preferences::recheckTorrentsOnCompletion() && !TorrentPersistentData::isSeed(hash)) {
|
if(Preferences::recheckTorrentsOnCompletion() && !was_already_seeded) {
|
||||||
// Remember finished state
|
// Remember finished state
|
||||||
TorrentPersistentData::saveSeedStatus(h);
|
TorrentPersistentData::saveSeedStatus(h);
|
||||||
h.force_recheck();
|
h.force_recheck();
|
||||||
|
|||||||
Reference in New Issue
Block a user