mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
[#2928] [GTKUI] Fix missing name and trackers adding magnets
This commit is contained in:
parent
19fdd2f88c
commit
d8e5cbe689
1 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@ import base64
|
|||
import logging
|
||||
import os
|
||||
from xml.sax.saxutils import escape as xml_escape
|
||||
from xml.sax.saxutils import unescape as xml_unescape
|
||||
|
||||
import gtk
|
||||
from gobject import TYPE_INT64, TYPE_UINT64
|
||||
|
@ -702,7 +703,7 @@ class AddTorrentDialog(component.Component):
|
|||
row = self.torrent_liststore.get_iter_first()
|
||||
while row is not None:
|
||||
torrent_id = self.torrent_liststore.get_value(row, 0)
|
||||
filename = self.torrent_liststore.get_value(row, 2)
|
||||
filename = xml_unescape(self.torrent_liststore.get_value(row, 2))
|
||||
try:
|
||||
options = self.options[torrent_id]
|
||||
except KeyError:
|
||||
|
|
Loading…
Add table
Reference in a new issue