Browse Source

Fix cases where the fastresume was wrongly overwritten when in 'Missing Files' status. Closes #3602.

adaptive-webui-19844
sledgehammer999 9 years ago
parent
commit
fd39efd846
  1. 6
      src/core/bittorrent/session.cpp

6
src/core/bittorrent/session.cpp

@ -1701,6 +1701,7 @@ void Session::handleTorrentChecked(TorrentHandle *const torrent) @@ -1701,6 +1701,7 @@ void Session::handleTorrentChecked(TorrentHandle *const torrent)
void Session::handleTorrentFinished(TorrentHandle *const torrent)
{
if (!torrent->hasError() && !torrent->hasMissingFiles())
saveTorrentResumeData(torrent);
emit torrentFinished(torrent);
@ -2153,9 +2154,12 @@ void Session::handleAddTorrentAlert(libtorrent::add_torrent_alert *p) @@ -2153,9 +2154,12 @@ void Session::handleAddTorrentAlert(libtorrent::add_torrent_alert *p)
torrent->resume();
logger->addMessage(tr("'%1' added to download list.", "'torrent name' was added to download list.")
.arg(torrent->name()));
}
// In case of crash before the scheduled generation
// of the fastresumes.
saveTorrentResumeData(torrent);
}
if ((torrent->ratioLimit() >= 0) && !m_bigRatioTimer->isActive())
m_bigRatioTimer->start();

Loading…
Cancel
Save