mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Make Deluge dependent on libtorrent 0.14.9 or greater. This is due to an over-downloading bug in
libtorrent.
This commit is contained in:
parent
292428280d
commit
95b26efbb4
1 changed files with 5 additions and 0 deletions
|
@ -76,6 +76,11 @@ class Core(component.Component):
|
|||
# Start the libtorrent session
|
||||
log.info("Starting libtorrent %s session..", lt.version)
|
||||
|
||||
# We must depend on libtorrent >= 0.14.9 due to over-downloading bug
|
||||
if lt.version < 0.14.9:
|
||||
log.error("This version of Deluge requires libtorrent >= 0.14.9.")
|
||||
sys.exit(1)
|
||||
|
||||
# Create the client fingerprint
|
||||
version = [int(value.split("-")[0]) for value in deluge.common.get_version().split(".")]
|
||||
while len(version) < 4:
|
||||
|
|
Loading…
Add table
Reference in a new issue