From 0297409f2f0f7300cf91a1d24dfb7005dfbaa681 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Tue, 17 Jul 2007 09:15:43 +0000 Subject: [PATCH] additional move_storage conditional -micah --- src/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core.py b/src/core.py index 23d255a2c..871a60439 100644 --- a/src/core.py +++ b/src/core.py @@ -572,7 +572,8 @@ class Manager: elif event['event_type'] is self.constants['EVENT_FINISHED']: # Queue seeding torrent to bottom if needed - if self.get_pref('enable_move_completed'): + if self.get_pref('enable_move_completed') and not \ + (self.get_pref('default_finished_path') == self.get_pref('default_download_path')): deluge_core.move_storage(event['unique_ID'], self.get_pref('default_finished_path')) if self.get_pref('queue_seeds_to_bottom'): self.queue_bottom(event['unique_ID'])