mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 09:43:07 -07:00
Merge pull request #9265 from glassez/dont-save-paused
Never save resume data for already paused torrents
This commit is contained in:
commit
260b03de92
1 changed files with 2 additions and 2 deletions
|
@ -2350,9 +2350,9 @@ void Session::generateResumeData(bool final)
|
||||||
{
|
{
|
||||||
foreach (TorrentHandle *const torrent, m_torrents) {
|
foreach (TorrentHandle *const torrent, m_torrents) {
|
||||||
if (!torrent->isValid()) continue;
|
if (!torrent->isValid()) continue;
|
||||||
if (torrent->hasMissingFiles()) continue;
|
if (torrent->isChecking() || torrent->isPaused()) continue;
|
||||||
if (torrent->isChecking() || torrent->hasError()) continue;
|
|
||||||
if (!final && !torrent->needSaveResumeData()) continue;
|
if (!final && !torrent->needSaveResumeData()) continue;
|
||||||
|
if (torrent->hasMissingFiles() || torrent->hasError()) continue;
|
||||||
|
|
||||||
saveTorrentResumeData(torrent, final);
|
saveTorrentResumeData(torrent, final);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue