Compare commits
No commits in common. "f104a688f203220610001a29e4457ce27252c016" and "7220fb4cdd6b9a67a9e4cdd9ce9ee7c0f7d350b8" have entirely different histories.
f104a688f2
...
7220fb4cdd
2 changed files with 2 additions and 9 deletions
|
|
@ -195,19 +195,14 @@ def run_scan():
|
||||||
if len(ids) != len(books):
|
if len(ids) != len(books):
|
||||||
logger.debug('number of books %s vs number of ids %s', len(books), len(ids))
|
logger.debug('number of books %s vs number of ids %s', len(books), len(ids))
|
||||||
if library_items != len(books):
|
if library_items != len(books):
|
||||||
|
logger.debug('number of books %s vs number of items in library %s', len(books), library_items)
|
||||||
library_items = set([str(i) for i in user.library.items])
|
library_items = set([str(i) for i in user.library.items])
|
||||||
gone = library_items - ids
|
gone = library_items - ids
|
||||||
first = True
|
|
||||||
if gone:
|
if gone:
|
||||||
for id in gone:
|
for id in gone:
|
||||||
i = Item.get(id)
|
i = Item.get(id)
|
||||||
if i.info.get('mediastate') == 'transferring':
|
|
||||||
continue
|
|
||||||
path = i.get_path()
|
path = i.get_path()
|
||||||
if not path or not os.path.exists(path):
|
if not path or not os.path.exists(path):
|
||||||
if first:
|
|
||||||
logger.debug('number of books %s vs number of items in library %s', len(books), library_items)
|
|
||||||
first = False
|
|
||||||
logger.debug('cleaning orphaned record %s %s', i, path)
|
logger.debug('cleaning orphaned record %s %s', i, path)
|
||||||
i.remove_file()
|
i.remove_file()
|
||||||
missing = ids - library_items
|
missing = ids - library_items
|
||||||
|
|
|
||||||
|
|
@ -155,9 +155,7 @@ class Tor(object):
|
||||||
self.controller.add_event_listener(self.event_listener)
|
self.controller.add_event_listener(self.event_listener)
|
||||||
self.controller.add_status_listener(self.status_listener)
|
self.controller.add_status_listener(self.status_listener)
|
||||||
self.connected = True
|
self.connected = True
|
||||||
port = self.controller.get_conf('SocksPort')
|
self.socks_port = int(self.controller.get_conf('SocksPort').split(' ')[0])
|
||||||
if port:
|
|
||||||
self.socks_port = int(port.split(' ')[0])
|
|
||||||
self.publish()
|
self.publish()
|
||||||
state.online = self.is_online()
|
state.online = self.is_online()
|
||||||
return True
|
return True
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue