mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
Don't break torrent checking
This commit is contained in:
@@ -1437,6 +1437,12 @@ void TorrentHandle::toggleFirstLastPiecePriority()
|
|||||||
void TorrentHandle::pause()
|
void TorrentHandle::pause()
|
||||||
{
|
{
|
||||||
if (m_startupState != Started) return;
|
if (m_startupState != Started) return;
|
||||||
|
if (m_pauseWhenReady) return;
|
||||||
|
if (isChecking()) {
|
||||||
|
m_pauseWhenReady = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (isPaused()) return;
|
if (isPaused()) return;
|
||||||
|
|
||||||
setAutoManaged(false);
|
setAutoManaged(false);
|
||||||
@@ -1453,6 +1459,7 @@ void TorrentHandle::resume(bool forced)
|
|||||||
{
|
{
|
||||||
if (m_startupState != Started) return;
|
if (m_startupState != Started) return;
|
||||||
|
|
||||||
|
m_pauseWhenReady = false;
|
||||||
resume_impl(forced);
|
resume_impl(forced);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user