mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 11:49:01 +03:00
Correctly set the 'm_hasSeedStatus' parameter on different situations.
This commit is contained in:
parent
cd3dc3d645
commit
3a29d70dd5
1 changed files with 5 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue