mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-17 13:56:47 +00:00
Allow versions with '-RC' tags
This commit is contained in:
parent
b3cc15c4a1
commit
f13ea7375e
@ -202,7 +202,7 @@ class Core(
|
|||||||
# Create the client fingerprint
|
# Create the client fingerprint
|
||||||
version = []
|
version = []
|
||||||
for value in deluge.common.get_version().split("."):
|
for value in deluge.common.get_version().split("."):
|
||||||
version.append(int(value))
|
version.append(int(value.split("-")[0]))
|
||||||
fingerprint = lt.fingerprint("DE", *version)
|
fingerprint = lt.fingerprint("DE", *version)
|
||||||
|
|
||||||
# Start the libtorrent session
|
# Start the libtorrent session
|
||||||
|
Loading…
x
Reference in New Issue
Block a user