Do not bother removing fastresume files on resume.

This commit is contained in:
Andrew Resch 2008-02-25 04:29:18 +00:00
parent 83f8481797
commit 367e3f1df8
1 changed files with 0 additions and 5 deletions

View File

@ -832,11 +832,6 @@ window, please enter your password"))
for uid in unique_ids: for uid in unique_ids:
torrent_state = self.manager.get_torrent_state(uid) torrent_state = self.manager.get_torrent_state(uid)
if torrent_state["is_paused"]: if torrent_state["is_paused"]:
try:
if torrent_state["state"] != 6 or torrent_state["state"] != 7:
os.remove(self.manager.unique_IDs[uid].filename + ".fastresume")
except:
pass
self.manager.set_user_pause(uid, False, True) self.manager.set_user_pause(uid, False, True)
self.update() self.update()