mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
Allow versions with '-RC' tags
This commit is contained in:
parent
b3cc15c4a1
commit
f13ea7375e
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ class Core(
|
|||
# Create the client fingerprint
|
||||
version = []
|
||||
for value in deluge.common.get_version().split("."):
|
||||
version.append(int(value))
|
||||
version.append(int(value.split("-")[0]))
|
||||
fingerprint = lt.fingerprint("DE", *version)
|
||||
|
||||
# Start the libtorrent session
|
||||
|
|
Loading…
Add table
Reference in a new issue