mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-07 08:58:38 +00:00
Fix #294 prevent deluge from crashing when autoload folder does not
exist
This commit is contained in:
parent
2be6c2a5ed
commit
5270d1fe4f
1 changed files with 5 additions and 5 deletions
|
@ -1098,9 +1098,9 @@ of Deluge. Would you like to be taken to our download site?"))
|
||||||
## Call via a timer to update the interface
|
## Call via a timer to update the interface
|
||||||
def update(self):
|
def update(self):
|
||||||
if self.config.get("autoload") and self.config.get("default_autoload_path"):
|
if self.config.get("autoload") and self.config.get("default_autoload_path"):
|
||||||
|
try:
|
||||||
for filename in os.listdir(self.config.get("default_autoload_path")):
|
for filename in os.listdir(self.config.get("default_autoload_path")):
|
||||||
if filename[-len(".torrent"):].lower() == ".torrent":
|
if filename[-len(".torrent"):].lower() == ".torrent":
|
||||||
try:
|
|
||||||
self.interactive_add_torrent_path(os.path.join(\
|
self.interactive_add_torrent_path(os.path.join(\
|
||||||
self.config.get("default_autoload_path"), filename), \
|
self.config.get("default_autoload_path"), filename), \
|
||||||
self.config.get("default_download_path"))
|
self.config.get("default_download_path"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue