mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-10 10:28:39 +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)
|
Deluge 0.9.07 - "1.0.0_RC7" (In Development)
|
||||||
Core:
|
Core:
|
||||||
* Fix Vista slowness issue
|
* Fix loading torrents from state when fastresume file is missing
|
||||||
|
|
||||||
GtkUI:
|
GtkUI:
|
||||||
* Add 'edit' to edit trackers dialog
|
* Add 'edit' to edit trackers dialog
|
||||||
* Improve performance of initial torrent list load
|
* Improve performance of initial torrent list load
|
||||||
* Fix hiding the bottom pane when disabling all the tabs
|
* 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)
|
Deluge 0.9.06 - "1.0.0_RC6" (13 August 2008)
|
||||||
Core:
|
Core:
|
||||||
|
|
|
@ -217,7 +217,7 @@ class TorrentManager(component.Component):
|
||||||
|
|
||||||
def get_resume_data_from_file(self, torrent_id):
|
def get_resume_data_from_file(self, torrent_id):
|
||||||
"""Returns an entry with the resume data or None"""
|
"""Returns an entry with the resume data or None"""
|
||||||
fastresume = None
|
fastresume = ""
|
||||||
try:
|
try:
|
||||||
_file = open(
|
_file = open(
|
||||||
os.path.join(
|
os.path.join(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue