mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Check against libtorrent >15 not >16.
This commit is contained in:
parent
38906468c1
commit
9d29ca7b29
1 changed files with 1 additions and 1 deletions
|
@ -569,7 +569,7 @@ class Torrent(object):
|
|||
Returns the time a torrent was last seen complete, ie, with all pieces
|
||||
available.
|
||||
"""
|
||||
if lt.version_minor > 16:
|
||||
if lt.version_minor > 15:
|
||||
return self.status.last_seen_complete
|
||||
self.calculate_last_seen_complete()
|
||||
return self._last_seen_complete
|
||||
|
|
Loading…
Add table
Reference in a new issue