mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 15:08:40 +00:00
Fixed AddTorrents crashing on folders containing unicode characters
This commit is contained in:
parent
8de9843e7e
commit
bd13457f33
1 changed files with 7 additions and 1 deletions
|
@ -227,7 +227,13 @@ class AddTorrents(BaseMode, component.Component):
|
||||||
size_str = "%i items" % size
|
size_str = "%i items" % size
|
||||||
else:
|
else:
|
||||||
size_str = " unknown"
|
size_str = " unknown"
|
||||||
cols = [filename.decode("utf8"), size_str, common.fdate(time)]
|
|
||||||
|
try:
|
||||||
|
filename = filename.decode("utf8")
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
cols = [filename, size_str, common.fdate(time)]
|
||||||
widths = [self.cols - 35, 12, 23]
|
widths = [self.cols - 35, 12, 23]
|
||||||
self.formatted_rows.append(format_utils.format_row(cols, widths))
|
self.formatted_rows.append(format_utils.format_row(cols, widths))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue