diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index 3743afbe2..42aec4490 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -305,6 +305,8 @@ class TorrentView(listview.ListView, component.Component): new = status[torrent_id] diff = {} for key in new.keys(): + if not key in old.keys(): + continue # There is a difference, so lets add it to our new dict if new[key] != old[key]: diff[key] = new[key]