don't remove pending downloads
This commit is contained in:
parent
7220fb4cdd
commit
fb04c9fef0
2 changed files with 5 additions and 1 deletions
|
@ -201,6 +201,8 @@ def run_scan():
|
|||
if gone:
|
||||
for id in gone:
|
||||
i = Item.get(id)
|
||||
if i.info.get('mediastate') == 'transferring':
|
||||
continue
|
||||
path = i.get_path()
|
||||
if not path or not os.path.exists(path):
|
||||
logger.debug('cleaning orphaned record %s %s', i, path)
|
||||
|
|
|
@ -155,7 +155,9 @@ class Tor(object):
|
|||
self.controller.add_event_listener(self.event_listener)
|
||||
self.controller.add_status_listener(self.status_listener)
|
||||
self.connected = True
|
||||
self.socks_port = int(self.controller.get_conf('SocksPort').split(' ')[0])
|
||||
port = self.controller.get_conf('SocksPort')
|
||||
if port:
|
||||
self.socks_port = int(port.split(' ')[0])
|
||||
self.publish()
|
||||
state.online = self.is_online()
|
||||
return True
|
||||
|
|
Loading…
Reference in a new issue