From 3a29d70dd5536bfd0bcd6d2baa3bc5216c9698f6 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Mon, 26 Oct 2015 00:53:04 +0200 Subject: [PATCH] Correctly set the 'm_hasSeedStatus' parameter on different situations. --- src/core/bittorrent/torrenthandle.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/core/bittorrent/torrenthandle.cpp b/src/core/bittorrent/torrenthandle.cpp index 5832dcdaf..101ceee64 100644 --- a/src/core/bittorrent/torrenthandle.cpp +++ b/src/core/bittorrent/torrenthandle.cpp @@ -133,7 +133,7 @@ AddTorrentData::AddTorrentData(const AddTorrentParams &in) , savePath(in.savePath) , disableTempPath(in.disableTempPath) , sequential(in.sequential) - , hasSeedStatus(false) + , hasSeedStatus(in.skipChecking) // do not react on 'torrent_finished_alert' when skipping , skipChecking(in.skipChecking) , addForced(in.addForced) , addPaused(in.addPaused) @@ -195,7 +195,7 @@ TorrentHandle::TorrentHandle(Session *session, const libtorrent::torrent_handle , m_name(data.name) , m_savePath(Utils::Fs::toNativePath(data.savePath)) , m_label(data.label) - , m_hasSeedStatus(data.resumed ? data.hasSeedStatus : false) + , m_hasSeedStatus(data.hasSeedStatus) , m_ratioLimit(data.ratioLimit) , m_tempPathDisabled(data.disableTempPath) , m_hasMissingFiles(false) @@ -1378,6 +1378,9 @@ void TorrentHandle::handleTorrentCheckedAlert(libtorrent::torrent_checked_alert updateStatus(); adjustActualSavePath(); + if (progress() < 1.0) + m_hasSeedStatus = false; + if (m_pauseAfterRecheck) { m_pauseAfterRecheck = false; pause();