Browse Source

Immediately update torrent_status after manipulating super seeding mode. Partially fixes #6072.

adaptive-webui-19844
sledgehammer999 8 years ago
parent
commit
5046c36458
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 2
      src/base/bittorrent/torrenthandle.cpp

2
src/base/bittorrent/torrenthandle.cpp

@ -1819,6 +1819,8 @@ void TorrentHandle::setDownloadLimit(int limit) @@ -1819,6 +1819,8 @@ void TorrentHandle::setDownloadLimit(int limit)
void TorrentHandle::setSuperSeeding(bool enable)
{
SAFE_CALL(super_seeding, enable)
if (superSeeding() != enable)
updateStatus();
}
void TorrentHandle::flushCache()

Loading…
Cancel
Save