mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix loading torrents from state when fastresume file is missing
This commit is contained in:
parent
9280a9609e
commit
8ecc336152
2 changed files with 6 additions and 2 deletions
|
@ -1,10 +1,14 @@
|
|||
Deluge 0.9.07 - "1.0.0_RC7" (In Development)
|
||||
Core:
|
||||
* Fix Vista slowness issue
|
||||
* Fix loading torrents from state when fastresume file is missing
|
||||
|
||||
GtkUI:
|
||||
* Add 'edit' to edit trackers dialog
|
||||
* Improve performance of initial torrent list load
|
||||
* Fix hiding the bottom pane when disabling all the tabs
|
||||
|
||||
Windows:
|
||||
* Fix Vista slowness issue
|
||||
|
||||
Deluge 0.9.06 - "1.0.0_RC6" (13 August 2008)
|
||||
Core:
|
||||
|
|
|
@ -217,7 +217,7 @@ class TorrentManager(component.Component):
|
|||
|
||||
def get_resume_data_from_file(self, torrent_id):
|
||||
"""Returns an entry with the resume data or None"""
|
||||
fastresume = None
|
||||
fastresume = ""
|
||||
try:
|
||||
_file = open(
|
||||
os.path.join(
|
||||
|
|
Loading…
Add table
Reference in a new issue