mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
[#2990] [Core] Fix torrent priorities mismatch
* The old priorities instead of updated call to lt were being saved to self.options.
This commit is contained in:
parent
41acade01a
commit
cc69c9c85b
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ class Torrent(object):
|
|||
self.update_state()
|
||||
break
|
||||
|
||||
self.options["file_priorities"] = handle_file_priorities
|
||||
self.options["file_priorities"] = self.handle.file_priorities()
|
||||
if self.options["file_priorities"] != list(file_priorities):
|
||||
log.warning("File priorities were not set for this torrent")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue