|
|
@ -122,6 +122,10 @@ class Scanner(Plugin): |
|
|
|
# Add identifier for library update |
|
|
|
update_after.append(group['library'].get('identifier')) |
|
|
|
|
|
|
|
# Break if CP wants to shut down |
|
|
|
if self.shuttingDown(): |
|
|
|
break |
|
|
|
|
|
|
|
for identifier in update_after: |
|
|
|
fireEvent('library.update', identifier = identifier) |
|
|
|
|
|
|
@ -253,6 +257,10 @@ class Scanner(Plugin): |
|
|
|
if not group['library']: |
|
|
|
log.error('Unable to determin movie: %s' % group['identifiers']) |
|
|
|
|
|
|
|
# Break if CP wants to shut down |
|
|
|
if self.shuttingDown(): |
|
|
|
break |
|
|
|
|
|
|
|
# Delete still (asuming) unpacking files |
|
|
|
for identifier in delete_identifier: |
|
|
|
del movie_files[identifier] |
|
|
|