From 653f80eac8593703bda727ca85d955dd1973ca1a Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sat, 11 May 2019 19:02:16 +0100 Subject: [PATCH] [#3250|Console] Fix errors dispaying magnets with no files Trying to display the files for magnet that has no metadata and thus no files resulted in `'NoneType' object is not iterable` errors. Only call file prio update method if we have a list of files. --- deluge/ui/console/modes/torrentdetail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/modes/torrentdetail.py b/deluge/ui/console/modes/torrentdetail.py index 7c4984108..d02a0d396 100644 --- a/deluge/ui/console/modes/torrentdetail.py +++ b/deluge/ui/console/modes/torrentdetail.py @@ -212,7 +212,7 @@ class TorrentDetail(BaseMode, PopupsHandler): if self.file_dict[i][6] != prio: need_prio_update = True self.file_dict[i][6] = prio - if need_prio_update: + if need_prio_update and self.file_list: self.__fill_prio(self.file_list) del state['file_progress'] del state['file_priorities']