Fix torrent info name not being utf-8 decoded when root file/folder name is blank
This commit is contained in:
parent
bc8cacdbd1
commit
3e67620e55
|
@ -603,7 +603,7 @@ class Torrent:
|
||||||
if self.handle.has_metadata():
|
if self.handle.has_metadata():
|
||||||
name = self.torrent_info.file_at(0).path.split("/", 1)[0]
|
name = self.torrent_info.file_at(0).path.split("/", 1)[0]
|
||||||
if not name:
|
if not name:
|
||||||
return self.torrent_info.name()
|
name = self.torrent_info.name()
|
||||||
try:
|
try:
|
||||||
return name.decode("utf8", "ignore")
|
return name.decode("utf8", "ignore")
|
||||||
except UnicodeDecodeError:
|
except UnicodeDecodeError:
|
||||||
|
|
Loading…
Reference in New Issue