Make sure to untag downloading dir if it's completed. fix #2341

This commit is contained in:
Ruud
2013-10-13 14:25:50 +02:00
parent 3be6389fbf
commit 65f039e9ed
+4 -3
View File
@@ -735,6 +735,10 @@ Remove it if you want it to be renamed (again, or at least let it try again)
fireEvent('movie.searcher.try_next_release', movie_id = rel.movie_id)
elif item['status'] == 'completed':
log.info('Download of %s completed!', item['name'])
# Remove the downloading tag
self.untagDir(item['folder'], 'downloading')
if self.statusInfoComplete(item):
# If the release has been seeding, process now the seeding is done
@@ -758,9 +762,6 @@ Remove it if you want it to be renamed (again, or at least let it try again)
# Set the release to snatched if it was missing before
fireEvent('release.update_status', rel.id, status = snatched_status, single = True)
# Remove the downloading tag
self.untagDir(item['folder'], 'downloading')
# Scan and Allow the downloader to clean-up
item.update({'pause': False, 'scan': True, 'process_complete': True})
scan_items.append(item)