mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 12:04:51 +00:00
Fix exception in get_selected_torrents().
This commit is contained in:
parent
22f6477d69
commit
3af0ea2e9f
1 changed files with 2 additions and 1 deletions
|
@ -383,7 +383,8 @@ class TorrentView(listview.ListView, component.Component):
|
|||
row = self.model_filter.get_iter(path)
|
||||
except Exception, e:
|
||||
log.debug("Unable to get iter from path: %s", e)
|
||||
|
||||
continue
|
||||
|
||||
child_row = self.model_filter.convert_iter_to_child_iter(None, row)
|
||||
child_row = self.model_filter.get_model().convert_iter_to_child_iter(child_row)
|
||||
if self.liststore.iter_is_valid(child_row):
|
||||
|
|
Loading…
Add table
Reference in a new issue