mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #2227 : Torrent file contains sha1 and ed2k digest that needs encoding to hex
This commit is contained in:
parent
7cc8243849
commit
74208c27f8
1 changed files with 4 additions and 1 deletions
|
@ -104,8 +104,11 @@ class TorrentInfo(object):
|
|||
else:
|
||||
path = decode_string(os.path.join(prefix, decode_string(os.path.join(*f["path"]), self.encoding)), self.encoding)
|
||||
f["index"] = index
|
||||
if "sha1" in f and len(f["sha1"]) == 20:
|
||||
f["sha1"] = f["sha1"].encode('hex')
|
||||
if "ed2k" in f and len(f["ed2k"]) == 16:
|
||||
f["ed2k"] = f["ed2k"].encode('hex')
|
||||
paths[path] = f
|
||||
|
||||
dirname = os.path.dirname(path)
|
||||
while dirname:
|
||||
dirinfo = dirs.setdefault(dirname, {})
|
||||
|
|
Loading…
Add table
Reference in a new issue