mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #1047 move completed does not work if saving to non default path
This commit is contained in:
parent
b12b5a8403
commit
197027510e
2 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
=== Deluge 1.2.0_rc3 (In Development) ===
|
||||
==== Core ====
|
||||
* Fix #1047 move completed does not work if saving to non default path
|
||||
|
||||
=== Deluge 1.2.0_rc2 (25 October 2009) ===
|
||||
==== GtkUI ====
|
||||
* Fix path errors when adding torrents externally in Windows
|
||||
|
|
|
@ -784,8 +784,7 @@ class TorrentManager(component.Component):
|
|||
|
||||
if torrent.options["move_completed"] and total_download:
|
||||
move_path = torrent.options["move_completed_path"]
|
||||
if torrent.options["download_location"] != move_path and \
|
||||
torrent.options["download_location"] == self.config["download_location"]:
|
||||
if torrent.options["download_location"] != move_path:
|
||||
torrent.move_storage(move_path)
|
||||
|
||||
torrent.is_finished = True
|
||||
|
|
Loading…
Add table
Reference in a new issue