1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-14 16:57:55 +00:00

Merge pull request #3375 from ngosang/completed_filter

Add Force Seeding state to Completed filter
This commit is contained in:
sledgehammer999 2015-07-12 15:44:01 +03:00
commit 948b2c0410

View File

@ -680,7 +680,8 @@ bool TorrentHandle::isCompleted() const
|| m_state == TorrentState::StalledUploading
|| m_state == TorrentState::CheckingUploading
|| m_state == TorrentState::PausedUploading
|| m_state == TorrentState::QueuedUploading;
|| m_state == TorrentState::QueuedUploading
|| m_state == TorrentState::ForcedUploading;
}
bool TorrentHandle::isActive() const