From ac2c8a3d303a3f4ec481f1ba35380d0c8c800a1e Mon Sep 17 00:00:00 2001 From: ngosang Date: Wed, 8 Jul 2015 16:01:10 +0200 Subject: [PATCH] Add Force Seeding state to Completed filter --- src/core/bittorrent/torrenthandle.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/bittorrent/torrenthandle.cpp b/src/core/bittorrent/torrenthandle.cpp index 17e26c638..8491a1100 100644 --- a/src/core/bittorrent/torrenthandle.cpp +++ b/src/core/bittorrent/torrenthandle.cpp @@ -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