Browse Source

Add Force Seeding state to Completed filter

adaptive-webui-19844
ngosang 10 years ago
parent
commit
ac2c8a3d30
  1. 3
      src/core/bittorrent/torrenthandle.cpp

3
src/core/bittorrent/torrenthandle.cpp

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

Loading…
Cancel
Save