mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
Only try to stop LoopingCalls if they are running
This commit is contained in:
parent
baa177a1b1
commit
0a84bc73c5
1 changed files with 5 additions and 2 deletions
|
@ -210,7 +210,10 @@ class TorrentManager(component.Component):
|
|||
|
||||
def stop(self):
|
||||
# Stop timers
|
||||
if self.save_state_timer.running:
|
||||
self.save_state_timer.stop()
|
||||
|
||||
if self.save_resume_data_timer.running:
|
||||
self.save_resume_data_timer.stop()
|
||||
|
||||
# Save state on shutdown
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue