mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-25 09:35:16 +00:00
Fix issue where plugins would try to be stopped after they have been
deregistered
This commit is contained in:
parent
a93bbc35a1
commit
52ea19249c
@ -261,7 +261,8 @@ class ComponentRegistry(object):
|
|||||||
deferreds = []
|
deferreds = []
|
||||||
|
|
||||||
for name in names:
|
for name in names:
|
||||||
deferreds.append(self.components[name]._component_stop())
|
if name in self.components:
|
||||||
|
deferreds.append(self.components[name]._component_stop())
|
||||||
|
|
||||||
return DeferredList(deferreds)
|
return DeferredList(deferreds)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user