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

This reverts commit 65f039e9ed.
This commit is contained in:
Ruud
2013-10-13 15:17:39 +02:00
parent 65f039e9ed
commit 2b57bdcd03

View File

@@ -735,10 +735,6 @@ 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
@@ -762,6 +758,9 @@ 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)