forked from premiere/premiere-libtorrent
report the true state of super_seeding of a torrent. If the torrent leaves finished or seeding state, it will clear it already
This commit is contained in:
parent
8d8f7fc4f8
commit
1bef80c3fa
|
@ -1,3 +1,4 @@
|
||||||
|
* finished non-seed torrents can also be in super-seeding mode
|
||||||
* fix issue related to unloading torrents
|
* fix issue related to unloading torrents
|
||||||
* fixed finished-time calculation
|
* fixed finished-time calculation
|
||||||
* add missing min_memory_usage() and high_performance_seed() settings presets to python
|
* add missing min_memory_usage() and high_performance_seed() settings presets to python
|
||||||
|
|
|
@ -770,7 +770,7 @@ namespace libtorrent
|
||||||
bool super_seeding() const
|
bool super_seeding() const
|
||||||
{
|
{
|
||||||
// we're not super seeding if we're not a seed
|
// we're not super seeding if we're not a seed
|
||||||
return m_super_seeding && is_seed();
|
return m_super_seeding;
|
||||||
}
|
}
|
||||||
|
|
||||||
void super_seeding(bool on);
|
void super_seeding(bool on);
|
||||||
|
|
Loading…
Reference in New Issue